NTJ
|
| Posted: 06/11/2002, 7:58 AM |
|
another newbie problem :)
when I built I have many errors :
[javac] C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\~camca0\CCSBuild\src\com\codecharge\components\Button.java:6: cannot resolve symbol
[javac] symbol : class HttpServletRequest
[javac] location: package http
[javac] import javax.servlet.http.HttpServletRequest;
[javac] ^
[javac] C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\~camca0\CCSBuild\src\com\codecharge\components\Page.java:8: cannot resolve symbol
[javac] symbol : class HttpServletRequest
[javac] location: package http
[javac] import javax.servlet.http.HttpServletRequest;
[javac] ^
[javac] C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\~camca0\CCSBuild\src\com\codecharge\components\Page.java:9: cannot resolve symbol
[javac] symbol : class HttpServletResponse
[javac] location: package http
[javac] import javax.servlet.http.HttpServletResponse;
[javac] ^
It seems that the compiler can't find the javax classes, I donc know how configure correctly servlet2.1. (path....)
|
|
|
 |
Dandavat
|
| Posted: 06/12/2002, 12:44 AM |
|
Hi NTJ!
In the Site Class Path property specify semicolon separated list of jar files to be added to Class Path. For example:
Class Path: c:/java/lib/servlet.jar;c:/java/xerces/lib/xerces.jar
Pranams,
Dandavat.
|
|
|
 |
NTJ
|
| Posted: 06/12/2002, 6:35 AM |
|
Thx. It works, I have my war file.
|
|
|
 |
eric
|
| Posted: 06/12/2002, 12:00 PM |
|
thanks i was looking for the same answer
astalavista
|
|
|
 |
|