Yes, there's no guarantee this will be the problem, but it's the only
thing I can think of.

Most xml editors and IDEs have the ability to automatically validate
xml, so just pick one.

If you do a search for "online xml validator", you probably will be
able to find something if you don't already have a local application.

This is most likely going to be a problem if your web.xml file starts
with a 2.3 dtd rather than a 2.4 xsd since dtd files are
order-dependent. but xsd files can be order independent.

<!DOCTYPE web-app PUBLIC
  "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  "http://java.sun.com/dtd/web-app_2_3.dtd";>

vs

<web-app id="WebApp_9" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";>


On Wed, Oct 7, 2009 at 3:05 PM, Jim the Standing Bear
<[email protected]> wrote:
> Hi Mike,
>
> In that case, it is certainly worth finding out.  Could you please
> give me a pointer or two how to go about verifying that?  Thanks!
>
> -- Jim
>

Reply via email to