[JBoss-user] [HTTPD, Servlets JSP] - Re: Mapping Servlet, got class not found error

2004-07-09 Thread rzanner
red_tulip wrote : | | ...snip... | | beans.TestServlet.class can be found in the /build/bean directory | | ...snipt... | | Hello Red Tulip, I see a small discrepancy between the class name beans.TestServlet and the directory name where it is located. Maybe here's a typo

[JBoss-user] [HTTPD, Servlets JSP] - Re: Mapping Servlet, got class not found error

2004-07-08 Thread darranl
What is the exact structure of your war file that contains the web.xml? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=3841336#3841336 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3841336

[JBoss-user] [HTTPD, Servlets JSP] - Re: Mapping Servlet, got class not found error

2004-07-07 Thread red_tulip
More information: beans.TestServlet.class can be found in the /build/bean directory, along with other classes in the same packages. Classes in the same package are used in .jsp files and all of them work fine. Did I miss something in web.xml or my build.xml? Thanks! View the original

[JBoss-user] [HTTPD, Servlets JSP] - Re: Mapping Servlet, got class not found error

2004-07-07 Thread red_tulip
Sorry, the actual code is: | web-app | display-namepackage-web/display-name | servlet | servlet-nameTestServlet/servlet-name | servlet-classbeans.TestServlet/servlet-class | /servlet | servlet-mapping | servlet-nameTestServlet/servlet-name |