NTLM::disable

Description

Disables processing for NTLM

Syntax

NTLM::disable

NTLM::disable

  • Disables processing for NTLM

Examples

Disables OneConnect & NTLM profile when a WWW-Authenticate “Negotiate” header is present:
when HTTP_RESPONSE {
    if { [string tolower [HTTP::header values "WWW-Authenticate"]] contains "negotiate"} {
        ONECONNECT::detach disable
        NTLM::disable
    }
}