RE: Strange custom class behaviour with subdirs in 3.2.1

2001-03-07 Thread Randy Layman
At the top of your JSP file, be sure to import StatsBean (i.e. %@ page import="StatsBean" %). Tomcat assumes that all of your webapp is in one package structure, so creating a helpdesk directory causes the generated JSP to have a helpdesk package. I don't know if this is in the spec,

Re: Strange custom class behaviour with subdirs in 3.2.1

2001-03-07 Thread Scott Tatum
You have solved my problem sir and I thank you! It all makes sense now that you have explained it. JRun 3.0, which implements the same servlet spec, didn't need the extra qualification. I wonder which one isn't following the spec? :-o I'm guessing JRun. I have a printout of the 2.2 servlet spec

RE: Strange custom class behaviour with subdirs in 3.2.1

2001-03-07 Thread Randy Layman
package name. Does JRun munge the directory structure and the page name together to form the class name, I wonder. Randy -Original Message- From: Scott Tatum [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 07, 2001 4:50 PM To: [EMAIL PROTECTED] Subject: Re: Strange custom class