Forum Discussion
Tobias_Neumeyer
Nimbostratus
Jun 29, 2009iRule / uri parameter manipulation
Hi,
Sorry, but I need some help from some experts again.
I'm trying to write an iRule which modifies a post request to the server.
This is the example request.
...
hoolio
Cirrostratus
Jun 29, 2009Is the update actually being made in the request to the server? Maybe it's a problem with caching of the HTTP:: commands. I thought using HTTP::query would have shown the update. Can you try logging in a second HTTP_REQUEST event?
when HTTP_REQUEST {
Check if path ends with /searchresults.aspx
if {[string tolower [HTTP::path]] ends_with "/searchresults.aspx"}{
Rewrite URI for u=https:// to u=http://
HTTP::uri [string map -nocase "u=https:// u=http://" [HTTP::uri]]
log local0. "[IP::client_addr]:[TCP::client_port]: Updated query string to [HTTP::query]"
}
}
when HTTP_REQUEST priority 501 {
log local0. "[IP::client_addr]:[TCP::client_port]: 501 Updated query string to [HTTP::query]"
}
Aaron
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