RE: New User Web.xml question

2004-02-25 Thread Shapira, Yoav
=b Yoav Shapira Millennium ChemInformatics >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: Wednesday, February 25, 2004 2:31 PM >To: [EMAIL PROTECTED] >Subject: RE: New User Web.xml question > > >Tomcat Log for web app, after I add

RE: New User Web.xml question

2004-02-25 Thread nrapagnani
:260) at org.apache.catalina.startup.BootstrapService.main(BootstrapService.java:309) -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 1:52 PM To: Tomcat Users List Subject: RE: New User Web.xml question Howdy, >When I rest

RE: New User Web.xml question

2004-02-25 Thread Shapira, Yoav
Howdy, >When I restart Tomcat, I get a 404 error. Any ideas? You don't get a 404 error when you restart tomcat. You get a 404 error when you try to access some resource that tomcat can't find. What resource, what is its mapping if any, and what errors are in your logs? Yoav Shapira This e

RE: New User Web.xml question

2004-02-25 Thread nrapagnani
ers List Subject: RE: New User Web.xml question Howdy, You don't need to declare JSPs in your web.xml even though they really are servlets, because there's a special servlet that serves JSP pages. That servlet is declared and mapped in the master web.xml file located in the $CATALINA_H

RE: New User Web.xml question

2004-02-25 Thread Filip Hanik \(lists\)
JSP do not need any entries in web.xml caused they are simply mapped by filename Servlets need an entry so that you can map the servlet class to a URL pattern Filip -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:14 AM To: [EMAIL PR

RE: New User Web.xml question

2004-02-25 Thread Shapira, Yoav
Howdy, You don't need to declare JSPs in your web.xml even though they really are servlets, because there's a special servlet that serves JSP pages. That servlet is declared and mapped in the master web.xml file located in the $CATALINA_HOME/conf directory. Start with a web.xml file that just has