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
}
}
Is this configuration enabled on the same VS you applied APM Sharepoint Authentication code?
If Yes, I recommend to use version 2 of the code which allow you to manage APM disable in the first HTTP_REQUEST event (lines 50-97).
don't create another irule but edit this one to manage Authentication.
I guess you can manage office web apps by Host header to disable APM.
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
