Forum Discussion
BigIP APM 12.1.3: username variable session.logon.last.username empty
I have an irule which triggers an access policy based on a condition => $EnableAPMPolicy equals 1
when HTTP_REQUEST {
ACCESS::disable
if { $EnableAPMPolicy equals 1 } {
ACCESS::enable
}
}
So by default I set ACCESS::disable in the HTTP_REQUEST. This was preventing IE from getting the username variable somehow. I added a condition which only calls ACCESS:disable if $PolicyEnabled = 0 Now IE is happy and variable is passed along.
when HTTP_REQUEST {
if { $EnableAPMPolicy equals 0 } {
ACCESS::disable
}
if { $EnableAPMPolicy equals 1 } {
ACCESS::enable
}
}
After some tests this configuration interferes with office web apps. I have to keep the access:disable by default. Anyone know why this prevents IE from passing the session variable in APM?
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
* 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