Howdy, >Sometimes Yoav I frighten myself with how ignorant I am.
It doesn't seem like your ignorant at all ;) You can be sure for every question you ask, at least 3 people on the list have run into the problem, and most people on this list aren't at all clueless... >I say at the top of the bean: package idcard, and then I keep it in the >idcard folder with all the other classes that are part of the app. >Do I need to do anything else to make it a package? >>C:\Tomcat\work\Standalone\localhost\idcard\retrieveData$jsp.java:64: >Class >>org.apache.jsp.GetData not found. GetData getData = null; This error typically means that GetData didn't have a package statement, so Jasper stuck it in Jasper's default package, org.apache.jsp, which would make other classes that refer to GetData fail. Take a look at retrieveData$jsp.java, which should be in tomcat's work directory. Take a look at GetData, make sure it has a package statement, e.g. package idcard, and make sure the classes that use GetData import it by the appropriate package name. >How would I use JIKES instead? Is it a classpath thing? See the Jasper 2 how-to: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jasper-howto.html#Using% 20Jikes I wouldn't move to jikes at this time, as I don't think your problem is javac-related and moving to jikes now will just add a variable. Solve this first ;) Yoav Shapira Millennium ChemInformatics This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
