Hello All,
I am trying to provide form based authentication for my java app deployed on HCP .
i am following below url for the same .
and i have added below details as per the instruction , this is rendering default login form provided by cloud sdk .
but my requirement to render custom login form in place of that .
so i tried with below details . its working for Tomcat based application but its not working for Cloud based application .
i am deploying app to JAVA EE Web 6 pro filler server.
please help .
<security-constraint>
<display-name>SecurityConstraint</display-name>
<web-resource-collection>
<web-resource-name>WRCollection</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>loginUser</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>logon.jsp</form-login-page>
<form-error-page>logonError.jsp</form-error-page>
</form-login-config>
</login-config>
<security-role>
<role-name>loginUser</role-name>
</security-role>