In my web application, I have used basic http form based authentication of spring-security 3.1.3. When the application is deployed on Weblogic 12c (JDK 1.6), the application works fine as expected, but once I am deploying it in Weblogic 9.2, I am getting Error 310 too many redirects.
I have applied the following fix on Weblogic domain's config.xml
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>
</security-configuration>
but no luck. I am getting the same error. Once I disable spring security from web.xml, application again works fine without login facility of course. Moreover, there is no error in server log, or app log, but in access log I am getting these..
127.0.0.1 - - [04/Jan/2013:21:06:50 +0530] "GET /cat/home HTTP/1.1" 302 265
127.0.0.1 - - [04/Jan/2013:21:06:51 +0530] "GET /cat/login HTTP/1.1" 302 265
My spring-security.xml is as follows:
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.1.xsd">
<http pattern="/login*" security="none"/>
<http pattern="/favicon.ico" security="none"/>
<http pattern="/audit/create*" security="none"/>
<http pattern="/error" security="none"/>
<http pattern="/resources/**" security="none"/>
<http auto-config='true' use-expressions="true">
<intercept-url pattern="/admin/**" access="hasRole('ROLE_ADMIN')"/>
<intercept-url pattern="/**" access="isAuthenticated()" />
<form-login login-page="/login" authentication-failure-url="/loginfailed" />
<logout logout-success-url="/logout" delete-cookies="JSESSIONID"/>
<access-denied-handler ref="accessDeniedHandler"/>
</http>
<authentication-manager>
<authentication-provider>
<jdbc-user-service data-source-ref="cat-oracle-dataSource"
users-by-username-query="
select username, password, 1
from users where username=?"
authorities-by-username-query="
select u.username, ur.authority from users u, user_roles ur
where u.user_id = ur.user_id and u.username =?"
/>
</authentication-provider>
</authentication-manager>
<beans:bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<beans:property name="basenames">
<beans:list>
<beans:value>properties.security-message</beans:value>
</beans:list>
</beans:property>
</beans:bean>
<beans:bean id="accessDeniedHandler" class="org.cat.core.security.CATAccessHandler">
<beans:property name="accessDeniedUrl" value="/cat/error" />
<beans:property name="errorPropertyFile" value="properties/error.properties" />
<beans:property name="propertyManager" ref="propertyManager" />
</beans:bean>
</beans:beans>
And here is the web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
<display-name>cat</display-name>
<servlet>
<servlet-name>log4j-init</servlet-name>
<servlet-class>org.cat.core.servlets.Log4jInit</servlet-class>
<init-param>
<param-name>LOG4J_INIT_FILE</param-name>
<param-value>/WEB-INF/classes/properties/log4j.properties
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml, /WEB-INF/spring-beans/spring-security.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-beans/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>/</welcome-file>
</welcome-file-list>
<jsp-config>
<taglib>
<taglib-uri>/spring</taglib-uri>
<taglib-location>/WEB-INF/spring.tld</taglib-location>
</taglib>
</jsp-config>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>sitemesh</filter-name>
<filter-class>com.opensymphony.sitemesh.webapp.SiteMeshFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>sitemesh</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
And here is the list of components I am using in the app
- spring 3.2
- spring integration 2.2.0
- spring security 3.1.3
- sitemesh 2.4.2
- jaxb 2.1
&
a. JDK 1.5 b. Weblogic 9.2 MP3 (have to use it, coz it is in production)
Can anyone please help me out here? I am totally running out of clue.
EDIT
After enabling DEBUG mode here is the applog under WLS 9.2
and here is the applog for WLS 12c, where it was working as expected
Another findings, when I turn of custom login page and using out of the box login screen of spring security, everything works just fine in weblogic 9.2. And here is my custom login page