I guess I'm not quite sure what you mean by a separate instance? Usually when I hear "instance" used in this context, it refers to an entirely separate instance of the application server software, like a separate Tomcat instance, which definitely isn't necessary for something like this. You can definitely run multiple applications in the same Tomcat instance, some of which are behind CAS and some of which aren't.
Am I mis-interpreting what you're saying? >>> William <[email protected]> 02/08/16 10:19 AM >>> Dmitriy, Thanks for the clarification on FWIW, the AnonymousRegisteredServiceUsernameAttributeProvider. To achieve that I will have to deploy the unsecured application on a separate instance as Chris had suggested. Or, as you had described, configure Spring Security (WEB-INF/spring-configuration/securityContext.xml) not to intercept the context root that I am trying to open up to anonymous users. I am assuming something like this: ... <sec:http pattern="/keepalive/**" use-expressions="true" auto-config="true"> <sec:intercept-url pattern="/keepalive/**" access="permitAll" /> </sec:http> ... Regards. -- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/a/apereo.org/group/cas-user/. -- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/a/apereo.org/group/cas-user/.
