Hey Guys,
Is anybody successfully using <user-data-constraint> in tomcat 4 web.xml?
I've tried the following:
<security-constraint>
<web-resource-collection>
<web-resource-name>SSL Area</web-resource-name>
<url-pattern>/user/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
Any <security-constraint> that I include a <user-data-constraint> in seems to be
completely ignored. Has anybody been able to make this work?
-Cavan Morris