Is it possible do not use the security constraint on a specific page (action form
struts) ?
This is the specific page a don't to have any constraint meaning no login page should appear if the user is not login.
/Card/Provisioning/Create.do
How should I modify the web.xml?
<security-constraint>
<web-resource-collection>
<web-resource-name>GemConnect Preview</web-resource-name>
<url-pattern>*.do</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>serviceManager</role-name>
<role-name>csr</role-name>
</auth-constraint>
</security-constraint>