jbuilder issues
hello all
I'm programming a servlet using Jbuilder enterprise. It was working fine yesterday, but today I get I bunch of errors.These two imports are greyed out
import javax.servlet.*;
import javax.servlet.http.*;
and all the classes pertaining to them appear as "cannot find symbol". Servlet is in my project path
what can be reason?
Thanks
[385 byte] By [
Amunikea] at [2007-10-2 8:09:02]

> Servlet is in my project pathIf you mean it's in your project's 'required libraries' or whatever that's called in a JBuilder project, then - no it isn't. The required jar(s) are not in the resulting classpath, or it wouldn't be giving you that error message.
> okay. what are the requiered jars?
Depends on what J2EE implementation you have. Different implementations (Weblogic versus Tomcat versus others) implement the specification in their own jars.
You need to know how to inspect the candidate jars to see if they contain the classes you're using (like javax.servlet.Something). A handy GUI tool for doing that is WinZip. Or a command-line tool would be the "jar" tool that came with your JDK.