Forum Discussion
elvisc_26948
Nimbostratus
Feb 04, 2010Extract URI from http_response
We have an application that generate unique session IDs by the server(NOT client), and Its part imbedded as part of the URI path.
My question is how do I extract that URI from the HTTP...
Feb 04, 2010
The URI is not available in the context of the HTTP Response event. If you need to know what it is from the original request, you need to store that in a session variable in the HTTP_REQUEST event.
when HTTP_REQUEST {
set uri [HTTP::uri]
}
when HTTP_RESPONSE {
log local0. "Returning response for URI: $uri"
}
Hope this helps...
-Joe
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects