Hi,
I am using Weblogic6.1 server. It supports Servlets 2.3 Specification.
I am trying with the following Security specifications. When I try login page through browser(
http://localhost:7001/login/logintest.jsp) it gave FORBIDDEN(403) Error. It is not redirecting to secured connection(
https://localhost:7002/login/logintest.jsp)
If I give a request to (
https://localhost:7002/login/logintest.jsp) it works fine.
What I want to do is, when client give a normal request, server has to redirect to Secured connection automatically.
Please help me to do it ?
<security-constraint>
<web-resource-collection>
<web-resource-name>LOGIN</web-resource-name>
<url-pattern>/login/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
Thanks in advance
mohan