This content has been marked as final.
Show 1 reply
-
1. Re: Securing xml
amitev Dec 9, 2008 12:12 AM (in response to hardaur)Put the following in web.xml:
<security-constraint> <web-resource-collection> <web-resource-name>XML</web-resource-name> <url-pattern>*.xml</url-pattern> </web-resource-collection> <auth-constraint/> </security-constraint>
This is a candidate for the documentation.