security constraint.
in my web.xml i have something like:
<security-constraint>
<display-name>Example Security Constraint</display-name>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
<url-pattern>/*</url-pattern>
I am using FORM based authentication with j_security_check, it works fine however i have index.jsp which loads fine but when i reference an image file i.e. <img src="something.jpg"> in the index.jsp it won't load because i have to login FIRST. is there anyway to filter a directory so that you don't need to login before accessing it?
Message was edited by:
spear_arrow

