Forum Discussion
RobC
Nimbostratus
Apr 25, 2016Web link that would include a page variable
To move a legacy application to an F5 APM I need to include a logon page variable with invitations to the logon site. The legacy solution uses a custom URL for individual users who are invited. Somet...
Yann_Desmarest
Cirrus
Apr 25, 2016Hello,
I'm not sure to understand exactly your needs but you may have use of irule similar to this one :
when HTTP_REQUEST {
set user [URI::query [HTTP::uri] user]
set enabled 0
if { [HTTP::path] equals "/my.policy" and $user != "" } {
set enabled 1
}
}
when HTTP_RESPONSE {
if { $enabled eq 1 and [HTTP::cookie exists MRHSession] } {
ACCESS::session data set -sid [HTTP::cookie MRHSession] session.logon.last.username $user
}
}
And define a logon page only with a password input within the VPE.
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