RE: javamail example in tomcat?

2002-05-31 Thread Shapira, Yoav
Howdy, Please refer to the Servlet Spec, v2.3. You can't have servlet elements after servlet-mapping elements. You should have all your servlet elements first, then all your servlet-mapping elements. Good luck, Yoav Shapira Millennium ChemInformatics -Original Message- From: Jakarta

Re: javamail example in tomcat?

2002-05-31 Thread Carl W. Jolly
yeah you have to put all your servlets then all your servlet-mappings the DTD is defined not to let you put anything out of order since it uses SAX which takes action on what it sees while it parses each element. On Fri, 2002-05-31 at 10:10, Jakarta Tomcat Newsgroup wrote: