Monday, October 3, 2011

Re: CAS SSO

We have apps using CAS SSO, and do not use Spring at all, but instead Guice. 

Here is all that is in our web.xml

    <!-- Guice servlet setup -->
    <filter>
        <filter-name>guiceFilter</filter-name>
        <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>guiceFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <listener>
        <listener-class>com.mycopmany.ApplicationInitContextListener</listener-class>
    </listener>


Guice plugs the app into CAS programmatically.


Can you elaborate on the issues you are experiencing?

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/5jafo-PYNmcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment