Re: web.xml help

2003-07-03 Thread Ben Souther
You have to list all of your servlet elements before listing any of the servlet-mapping elements. On Thursday 03 July 2003 08:21 am, J. W. Ballantine wrote: Hi, I'm new to this, and quickly going blind looking at a web.xml. When I start tomcat I get the following error message during

Re: web.xml help

2003-07-03 Thread John Turner
servlet-mapping tags must follow servlet tags. All of them. Don't do servlet/servlet-mapping, servlet/servlet-mapping, do ALL servlets then do ALL servlet-mappings. John On Thu, 03 Jul 2003 08:21:21 -0400, J. W. Ballantine [EMAIL PROTECTED] wrote: Hi, I'm new to this, and quickly going

Re: web.xml help

2003-07-03 Thread J. W. Ballantine
[EMAIL PROTECTED] From: Ben Souther [EMAIL PROTECTED] Subject: Re: web.xml help You have to list all of your servlet elements before listing any of the servlet-mapping elements. On Thursday 03 July 2003 08:21 am, J. W. Ballantine wrote: Hi, I'm new to this, and quickly

Re: web.xml help

2003-07-03 Thread Ben Souther
Users List [EMAIL PROTECTED] From: Ben Souther [EMAIL PROTECTED] Subject: Re: web.xml help You have to list all of your servlet elements before listing any of the servlet-mapping elements. On Thursday 03 July 2003 08:21 am, J. W. Ballantine wrote: Hi, I'm new

Re: web.xml help

2003-07-03 Thread Tim Funk
1) Its part of the Servlet API. - Not tomcat dependent 2) If you create an XML document that references a DTD - always verify your doc is valid against the DTD. -Tim J. W. Ballantine wrote: Thanks, Is there some place on the web that has this and like info? I've been scanning the xml

RE: web.xml help

2002-09-30 Thread Cooperstock, Dan
What you are suggesting doesn't sound very safe without using a source code control system. What we do is to have each developer have a local copy of Tomcat on their PC, with their own copy of the source code for the web app. That copy is a sandbox, copied out of the master project in the source

RE: web.xml help

2002-09-30 Thread Anthony Smith
: web.xml help What you are suggesting doesn't sound very safe without using a source code control system. What we do is to have each developer have a local copy of Tomcat on their PC, with their own copy of the source code for the web app. That copy is a sandbox, copied out of the master project