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 [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to