Re: TC 4.0 newbie - servlet app runs now!!

2001-11-26 Thread Mark
HelloWorldExample.class is under ..examples/WEB-INF/classes. It almost seems Tomcat will look for servlets by default in the ..WEB-INF/classes directory if there's no explicit mapping and when the html reference has a prefix of servlet/. For example, now that I *finally* got my app to work

Re: TC 4.0 newbie - servlet app runs now!!

2001-11-26 Thread Micael Padraig Og mac Grene
Mark wrote: For example, now that I *finally* got my app to work using servlet mapping, I also found if I leave all mapping out of web.xml and have FORM ACTION=servlet/myservlet METHOD=POST, Tomcat will still find/run the servlet under ..WEB-INF/classes. Is that by design? Mark,