hi

i integrated CAS with spring security fine, and

after entering the url in browser its giving cas login page, up to this its
working fine. But after entering the username and password
the login page is hanging indefenitely( in the server its generating tickets
indefenitely )

please help me on this

thanks in advance


my xml file contains
==================================================

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans";

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";

xmlns:p="http://www.springframework.org/schema/p";

xmlns:tx="http://www.springframework.org/schema/tx";

xmlns:sec="http://www.springframework.org/schema/security";

xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd

http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.0.xsd

http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-2.0.1.xsd";>

<description>

This is the configuration file for the Spring Security configuration used
with the sample application.

</description>

 <sec:authentication-manager alias="casAuthenticationManager"/>

  <bean id="serviceProperties"
class="org.springframework.security.ui.cas.ServiceProperties">

<property name="service" value="
https://10.99.22.220:8443/Rivulet/j_spring_cas_security_check"/>

<property name="sendRenew" value="false"/>

</bean>

  <sec:authentication-manager alias="authenticationManager"/>

<bean id="casProcessingFilter"
class="org.springframework.security.ui.cas.CasProcessingFilter">

<sec:custom-filter after="CAS_PROCESSING_FILTER"/>

<property name="authenticationManager" ref="authenticationManager"/>

<property name="authenticationFailureUrl" value="/casfailed.jsp"/>

<property name="defaultTargetUrl" value="/"/>

</bean>

<bean id="casProcessingFilterEntryPoint"

class="org.springframework.security.ui.cas.CasProcessingFilterEntryPoint">

<property name="loginUrl" value="https://localhost:8443/cas/login"/>

<property name="serviceProperties" ref="serviceProperties"/>

</bean>

<bean id="httpSessionContextIntegrationFilter"
class="org.springframework.security.context.HttpSessionContextIntegrationFilter"/>



<bean id="casAuthenticationProvider"
class="org.springframework.security.providers.cas.CasAuthenticationProvider">

<sec:custom-authentication-provider />

<property name="userDetailsService" ref="userService"/>

<property name="serviceProperties" ref="serviceProperties" />

<property name="ticketValidator">

<bean class="org.jasig.cas.client.validation.Cas20ServiceTicketValidator">

<constructor-arg index="0" value="https://localhost:8443/cas"; />

</bean>

</property>

<property name="key" value="an_id_for_this_auth_provider_only"/>

</bean>

  <sec:user-service id="userService">

<sec:user name="joe" password="joe" authorities="ROLE_USER" />

</sec:user-service>



</beans>

 ==============================











my web.xml file is::::

-----------------

<?xml version="1.0" encoding="UTF-8"?>

<!--

- Tutorial web application

-

- $Id: web.xml 2995 2008-04-24 00:27:37Z luke_t $

-->

<web-app xmlns="http://java.sun.com/xml/ns/j2ee";

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";

xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"; version="2.4">

<display-name>Spring Security Tutorial Application</display-name>

<!--

- Location of the XML file that defines the root application context

- Applied by ContextLoaderListener.

-->

<context-param>

<param-name>contextConfigLocation</param-name>

<param-value>

classpath:applicationContext-business.xml

/WEB-INF/applicationContext-security.xml

</param-value>

</context-param>

<context-param>

<param-name>log4jConfigLocation</param-name>

<param-value>/WEB-INF/classes/log4j.properties</param-value>

</context-param>

<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>

<!--

- Loads the root application context of this web app at startup.

- The application context is then available via

- WebApplicationContextUtils.getWebApplicationContext(servletContext).

-->

<listener>

<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

</listener>

<!--

- Publishes events for session creation and destruction through the
application

- context. Optional unless concurrent session control is being used.

-->

<listener>

<listener-class>org.springframework.security.ui.session.HttpSessionEventPublisher</listener-class>

</listener>

<listener>

<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>

</listener>

<!--

- Provides core MVC application controller. See contacts-servlet.xml.

-->

<servlet>

<servlet-name>bank</servlet-name>

<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>bank</servlet-name>

<url-pattern>*.html</url-pattern>

</servlet-mapping>

<welcome-file-list>

<welcome-file>index.jsp</welcome-file>

</welcome-file-list>

</web-app>



regards
surya
_______________________________________________
Yale CAS mailing list
cas@tp.its.yale.edu
http://tp.its.yale.edu/mailman/listinfo/cas

Reply via email to