in the project I do authorization through JAAS , weblogic 10.3.6 version in the weblogic setup created the user gave admin rights in weblogic.xml registered the following

 <container-descriptor> <prefer-web-inf-classes>true</prefer-web-inf-classes> </container-descriptor> <security-role-assignment> <role-name>EAdmin</role-name> <principal-name>EAdmin</principal-name> </security-role-assignment> 

and in the web.xml prescribed the following

 <security-constraint> <web-resource-collection> <web-resource-name>Success</web-resource-name> <url-pattern>/*</url-pattern> </web-resource-collection> <auth-constraint> <role-name>EAdmin</role-name> </auth-constraint> </security-constraint> <login-config> <auth-method>FORM</auth-method> <realm-name>myrealm</realm-name> <form-login-config> <form-login-page>/login.jsp</form-login-page> <form-error-page>/error.jsp</form-error-page> </form-login-config> </login-config> <security-role> <role-name>EAdmin</role-name> </security-role> 

I go by created login get in 404

    0