Name
CAS Handler
Description
Accepts and verifies a request as specified by the Central Authentication Service specification. This is often utilized to support single sign-on (SSO) implementations. The handler accepts the CAS "ticket" parameter valid for the provided service URL and attempts to validate it with the CAS server using the specified CAS version.
When a ticket is successfully validated the authenticated username is placed in the "username" parameter.
Fields
CAS Version: The CAS version under which to verify the ticket.
Service URL: URL of the service for which the ticket was granted. Must be the URL of the adapter of which the handler is a part.
CAS Server URL: Location, without validation path specifier (e.g. /validate), of the CAS server.
Examples
Enabling SSO for a custom web application.
Errors
Handler will error if:
- The server is unavailable. This can happen due to downtime, firewall configuration, network issues, or an incorrect server URL.
- The ticket is stale, meaning it was created too far in the past.
- The ticket was created for a URL different from the service URL.
- The ticket is invalid.
- The ticket was not provided.
0 Comments