Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ClassPath

Status
Not open for further replies.

AcnA

Programmer
Apr 9, 2003
11
0
0
CY
Hello,
i am using the windows batch files Startserver and Stopserver. When i open the startserver i get the message that the javac isn't found. I put in the sysedit:
%classpath=C:jdk1.2.2\lib\tools.jar%classpath%
but it did not work.
Any ideas?
 
I don't know what those batch files do, but I do know that javac is a program (javac.exe). You may need to add the directory it's in to your system path, not your java classpath.

It's probably in c:jdk1.2.2\bin
 
those are Tomcat windows batch files for starting/stoping the server. Tomcat compiles JSP files. You have not installed Tomcat correctly. Go back to the Tomcat Installation instructions and look for what you did wrong or did not do.

-pete
[sub]I just can't seem to get back my IntelliSense[/sub]
 
Set your path not classpath
Use "set PATH = %PATH%;C:\jdk1.2.2\binPath should be used for executables
 
kafenated thanx a lot.... You have been very helpful
:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top