> Is there a way that the service could requests the server via a web > service ? So that it will prevent my user to be redirected each time.
302 redirects are a fundamental aspect of the CAS protocol. The CAS server has a RESTful Web service API, but that is intended to be used by service components that need to integrate with CAS. It's ill advised to use the WS API for user authentication. > What kind of session database is supported CAS ? This component is called "TicketRegistry" in CAS, and it supports a number of implementations discussed under that heading in http://www.ja-sig.org/wiki/display/CASUM/. > Could I use something like Cassandra to store sessions ? There is no support for NoSQL databases like Cassandra out of the box, but it should be possible to develop one using the TicketRegistry interface, http://developer.jasig.org/source/browse/~raw,r=42053/jasigsvn/cas3/trunk/cas-server-core/src/main/java/org/jasig/cas/ticket/registry/TicketRegistry.java. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
