Re: Validation of Struts XML files

2008-04-17 Thread Laurie Harper
Looks like a simple versioning error to me; you're doctype declaration: !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.3//EN http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd; But you said: But, the

Validation of Struts XML files

2008-04-16 Thread Adam Gordon
Last night, our company had a maintenance window whereby Internet access was shut off from our office to the outside world. During that time I was doing development and attempted to start up our web app in a development environment. I've not seen this error in almost 2 years but it's

Re: Validation of Struts XML files

2008-04-16 Thread Dave Newton
Does it work if you use the DTD it says to use? !DOCTYPE struts-config PUBLIC -//Apache Software Foundation//DTD Struts Configuration 1.3//EN http://struts.apache.org/dtds/struts-config_1_3.dtd; Dave --- Adam Gordon [EMAIL PROTECTED] wrote: Last night, our company had a

Re: Validation of Struts XML files

2008-04-16 Thread Adam Gordon
Well, the DTD files are identical, only the URLs are different so I don't expect the outcome to be any different And it turns out it's not. Changing the URL does not prevent Tomcat from going out and trying to retrieve the DTD even though I've added it to the JAR file. Any other ideas?