• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

ClassPath not being updated.

 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have installed Weblogic Server on Windows '98 and I am trying to compile the example beans. The compiler is not finding the javax packages. I have included the weblogicaux.jar file in classpath, by editing autoexec.bat file. But, when I open an MS-DOS prompt window and type ehco%classpath%, I don't see the changes I've made to the autoexec.bat file. Could someone please help me?
Thanks.
Asuthosh.
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think you have to restart your computer for changes in the autoexec.bat file to take effect in Windows 98...
-Nate
 
Ranch Hand
Posts: 83
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As an alternative to changing the CLASSPATH environmental variable in your autoexec.bat and then rebooting, you can simply change the CLASSPATH environmental variable right at the dos prompt by entering...
c:\>set classpath=.;c:\jdk1.2.2\jre\classes;c:\whatever
Then you can see that the change has taken effect by using the dos command ...
echo %classpath%
...and all without rebooting!
 
Asuthosh Borikar
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Nate & Allen,
Thanks for your help!
-Asuthosh.
 
A feeble attempt to tell you about our stuff that makes us money
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic