Thanks for getting back to me.

>>
>> This didn't work - the first problem was an incompletely declared
>> WEB-INF/web.xml root element, which I fixed,
>
> What change did you make? Any chance of a pull request or at least a
> gist of the latest version? :)
>

It was very minor.  I think it it fails because JBoss-6 is configured
to perform schema validation
of web.xml, so I changed the declaration of the root element from:


<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/javaee";>


to:

<web-app version="2.5"
                       xmlns="http://java.sun.com/xml/ns/javaee";
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee

http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";>

I don't think you need version 2.5, but I just had another web.xml I
copy/pasted from, with the
schemaLocation for 2.5.


I will get back to you on the other items, right now I have it all
ripped apart, temporarily..


Thanks,

Chris

Reply via email to