Hello,
I have a proble with my login page. I want to use the SSL extensions
just for my login page, but i pass to a non secure page after the login,
the plug-ins rewrite url with the login and the password in paramter.
Where is my error ?
Thsk for your help
This is my struts config
<!-- Go to the login JSP page -->
<action path="/authentification" forward="/index.jsp" >
<set-property property="secure" value="true"/>
</action>
<!-- Action to validate login and password -->
<action path="/j_security_check"
type="com.sylob.cochise.dm1.war.general.identifier.IdentifierAction"
name="SecuriteForm"
scope="request"
validate="true"
input="/index.jsp">
<set-property property="secure" value="true"/>
<forward name="success" path="/authenticate.do" />
<forward name="retry" path="/index.jsp" />
</action>
<!-- Action to forward in non secure page -->
<action path="/authenticate"
type="com.sylob.cochise.dm1.war.general.identifier.IdentifierAction" >
<set-property property="secure" value="false"/>
<forward name="success" contextRelative="false"
path="/switch.do?page=/accueil.do&prefix=" />
</action>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]