Forum Discussion
sbrudolf1_14757
Nimbostratus
May 15, 2014iRule request for APM
Hello all.
I'm looking for an irule that will force the session through an APM profile based on the URL that is being accessed even if an APM profile has already been processed.
Currently i...
Kevin_Stewart
Employee
May 22, 2014Very odd. How about some debugging:
when HTTP_REQUEST {
log local0. "incoming URI = [HTTP::uri]"
if { ( [HTTP::cookie exists MRHSession] ) or ( [class match [string tolower [HTTP::uri]] starts_with my_private_uris] ) } {
if { [HTTP::cookie exists MRHSession] } {
log local0. "MRHSession cookie exists"
}
if { [class match [string tolower [HTTP::uri]] starts_with my_private_uris] } {
log local0. "URI found in data group"
}
return
} else {
log local0. "Access disabled for this request"
ACCESS::disable
return
}
}
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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