Forum Discussion
Syed_Abuthahir_
Nimbostratus
Jun 10, 2013.Net Application - Post Back
We have a .NET Post back application that does not work on IE & Chrome. It works only in Firefox. We are calling IIS 7.5 servers through Big-IP F5 Load balancer using iRule mapping in F5.
...
Kevin_Stewart
Employee
Jun 11, 2013Okay, now please do this. Modify your iRule to include some log statements and then test again and report your findings per browser. Make sure you follow the same actions in all of the browsers so that you can compare the results.
when HTTP_REQUEST {
set uri [string tolower [HTTP::uri]]
log local0. "User-Agent: [HTTP::header User-Agent]"
log local0. "Requesting: [HTTP::host]$uri"
if {$uri contains "departmentwebsite" || $uri contains "requestservice"} {
log local0. "uri contains departmentwebsite or requestservice"
pool Pool_Department
} elseif {$uri contains "iisservices"} {
log local0. "uri contains iisservices"
pool Pool_IIS
} elseif {$uri contains ".ida" || $uri contains ".exe" || $uri contains ".dll"} {
log local0. "uri contains .ida or .exe or .dll - discarding"
discard
} else {
log local0. "else condition"
pool Pool_http
}
}
It may also be useful to run a wire capture (WireShark) or browser capture (Fiddler) on the client side to see what the traffic looks like, what is being requested, and when it fails.
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