Tag: JSession ID
-
Brocade ADX – JSession Persistence
This is an example for JSession ID based persistence for Brocade ADX: csw-rule “JSESSION” header “cookie” pattern “JSESSIONID=” case-insensitive csw-rule “URI” url pattern “JSESSIONID=” case-insensitive csw-policy “CSW_JSESSION” case-insensitive match “JSESSION” persist offset 0 length 32 passive-persist match “URI” persist offset 0 length 32 passive-persist default forward 1 In the above policy, the persistence decision is […]
-
F5 iRule – JSession ID
The following is a simple iRule that provides persistence based on JSessionID that may be present in the incoming URI or within the Cookie: when HTTP_REQUEST { # Check if the JSESSIONID cookie is present if { [HTTP::cookie “JSESSIONID”] ne “” }{ persist uie [HTTP::cookie “JSESSIONID”] } else { # Cookie wasn’t set or didn’t […]