Apply captured session data to requests. Adds cookies from session store and optionally applies stored headers. Works in conjunction with CaptureSessionAction.
Evaluation scope defines the timing where this filter will be applied.
requestHeaderReceivedFromClient This scope occurs the moment fluxzy parsed the request header receiveid from client
applySessionAction
This action has no specific characteristic
The following examples apply this action to any exchanges
Apply session cookies to requests.
rules:
- filter:
typeKind: AnyFilter
actions:
- typeKind: ApplySessionAction
applyCookies: true
mergeWithExisting: true
Apply all session data (cookies and headers).
rules:
- filter:
typeKind: AnyFilter
actions:
- typeKind: ApplySessionAction
applyCookies: true
applyHeaders: true
mergeWithExisting: true
Apply session from a specific domain.
rules:
- filter:
typeKind: AnyFilter
actions:
- typeKind: ApplySessionAction
applyCookies: true
applyHeaders: true
mergeWithExisting: true
sourceDomain: auth.example.com
Replace existing cookies entirely with session cookies.
rules:
- filter:
typeKind: AnyFilter
actions:
- typeKind: ApplySessionAction
applyCookies: true
applyHeaders: true
View definition of ApplySessionAction for .NET integration.
This action has no related action