Forum Discussion
Evan_25555
Oct 21, 2014Historic F5 Account
Exchange 2010 deployment: Mobile devices are being reprovisioned
We have both production and development Exchange 2010 deployments. Our internal IT group have configured their mobile devices to point at the development deployment which is using the latest iApp te...
mikeshimkus_111
Oct 22, 2014Historic F5 Account
You could create a rule similar to this and attach it using the iRules option in the iApp:
when HTTP_REQUEST {
set is_activesync 0
switch -glob -- [string tolower [HTTP::path]] {
"/microsoft-server-activesync*" {
set is_activesync 1
log local0. "Request:[HTTP::host][HTTP::uri]:[HTTP::header names]"
foreach cookie [HTTP::cookie names] {
log local0. "Cookie name: $cookie, Cookie value: [HTTP::cookie value $cookie]"
}
foreach aHeader [HTTP::header names] {
log local0. "$aHeader: [HTTP::header value $aHeader]"
}
}
}
}
when HTTP_RESPONSE {
if { $is_activesync == 1 } {
log local0. "Response: [HTTP::status]:[HTTP::header names]"
foreach cookie [HTTP::cookie names] {
log local0. "Cookie name: $cookie, Cookie value: [HTTP::cookie value $cookie]"
}
foreach aHeader [HTTP::header names] {
log local0. "$aHeader: [HTTP::header value $aHeader]"
}
}
unset is_activesync
}
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