Forum Discussion
ScottB_85935
Jan 23, 2012Nimbostratus
Outlook WEB APP Sessions timing out
Hello,
We have recently migrated to Exchange 2010, and leverage F5 devices in a single virtual Server setup to load balance between our Exchange 2010 CAS front-end servers.
What we...
mikeshimkus_111
Jun 06, 2012Historic F5 Account
No problem. Here's an alternate way to do it if that one ends up giving you issues:
when HTTP_REQUEST {
if {[HTTP::method] eq "POST" && [string tolower [HTTP::path]] contains "/owa/auth.owa"}{
Trigger collection for up to 1MB of data
if {[HTTP::header "Content-Length"] ne "" && [HTTP::header "Content-Length"] <= 1048576}{
set content_length [HTTP::header "Content-Length"]
} else {
set content_length 1048576
}
Check if $content_length is not set to 0
if { $content_length > 0} {
HTTP::collect $content_length
}
}
}
when HTTP_REQUEST_DATA {
Check the flags parameter value
switch [URI::query "?[HTTP::payload]" flags] {
0 -
1 {
IP::idle_timeout 900
}
4 -
5 {
IP::idle_timeout 28800
}
}
}
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