WEBSSO::disable

Description

This command causes APM to forward a request without doing SSO processing on it. If APM receives HTTP 401 response from server, 401 response is forwarded to the end user. The scope of this iRule command is per HTTP request. Admin needs to execute it for each HTTP request.

Syntax

WEBSSO::disable

Examples

when ACCESS_ACL_ALLOWED {
  if { [HTTP::uri] contains "/example.cgi" } {
    log local0. "Disabling SSO for this request: [HTTP::uri]"
    WEBSSO::disable
  }
}