When depolying Spring Security on Weblogic 10.3. I encountered 2 pop up one for Spring and one for Weblogic.
Spring Security was configured with basic authentication. If your used is not in Weblogic’s security realm basically you dont get access. Some people also faced the same problem and here are their solutions.
If you use the form base authentication, you should be fine. It just happens for those who use the default basic/digest forms that your web browser provides.
1. Configure web.xml
<login-config>
<auth-method>CLIENT-CERT</auth-method>
</login-config>
add the above to your web.xml.
alternatively you can try this.
2. Edit weblogic config/config.xml
Add the following lines to config.xml in your admin server.
<enforce-valid-basic-auth-credentials>
false
</enforce-valid-basic-auth-credentials>