ONECONNECT::select

Description

The ‘select persist’ command instructs the proxy to use persistence data as the
OneConnect keying label when connecting to the server. NTLM connection pooling
leverages these commands internally, and it is not necessary for the user to
use them directly. Persistance data should be established via the ‘persist’
command.

Syntax

ONECONNECT::select [none | persist]

ONECONNECT::select

  • Returns value of the property based on the value of the property

ONECONNECT::select none

  • Disable boolean value of persistance.

ONECONNECT::select persist

  • Enable boolean value of persistance.

Examples

when HTTP_REQUEST {
     set keymatch [HTTP::uri]
     persist uie $keymatch
     ONECONNECT::select persist
   }
when HTTP_REQUEST_SEND {
     if { $keymatch == "/myuri"} {
     ONECONNECT::label update $keymatch
     }
   }