web.xml parser error

2003-11-05 Thread Antony Paul
am getting this error. Is it possible to know which web.xml caused the error ? [ERROR] Digester - -Parse Error at line 70 column 11: The content of element type web-app must match Antony Paul - To unsubscribe, e-mail: [EMAIL

Re: web.xml parser error

2003-11-05 Thread Christopher Schultz
Antony, am getting this error. Is it possible to know which web.xml caused the error ? [ERROR] Digester - -Parse Error at line 70 column 11: The content of element type web-app must match Which log file is this in? It's probably in the log file for a particular context. If that's the case, then

Re: web.xml parser error

2003-11-05 Thread Antony Paul
this mean ? Antony Paul - Original Message - From: Christopher Schultz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 7:42 PM Subject: Re: web.xml parser error Antony, am getting this error. Is it possible to know which web.xml caused the error

Re: web.xml parser error

2003-11-05 Thread Tim Funk
interesting thing is that every time it is pointing to last line of the file. What does this mean ? Antony Paul - Original Message - From: Christopher Schultz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 7:42 PM Subject: Re: web.xml parser error

Re: web.xml parser error

2003-11-05 Thread Antony Paul
PROTECTED] Sent: Wednesday, November 05, 2003 7:52 PM Subject: Re: web.xml parser error (probably) http://jakarta.apache.org/tomcat/faq/misc.html#baddtd -Tim Antony Paul wrote: It is printed on stderr.log. Every context is working. I found the xml file by editing each xml file and looking

Re: web.xml parser error

2003-11-05 Thread Tim Funk
Subject: Re: web.xml parser error (probably) http://jakarta.apache.org/tomcat/faq/misc.html#baddtd -Tim Antony Paul wrote: It is printed on stderr.log. Every context is working. I found the xml file by editing each xml file and looking for change of line number in error message. Servlet mapping

Re: web.xml parser error

2003-11-05 Thread Antony Paul
, November 05, 2003 8:12 PM Subject: Re: web.xml parser error Your xml is not valid with respect to the dtd. IE can say a document is well-formed but can't say a document is valid. All servlet elements must appear before any servlet-mapping See http://java.sun.com/dtd/web-app_2_3.dtd -Tim

Re: web.xml parser error

2003-11-05 Thread Tim Funk
Just follow the specs at ... http://java.sun.com/products/servlet/ http://java.sun.com/products/jsp/ -Tim Antony Paul wrote: It is solved. I did as per your suggestion. Thank for your reply. I would like to know what are the requirements to become a JSP/Servlet programmer/administrator.