Forum Discussion
igorzhuk
Altostratus
Jun 06, 2018Saml Logout from IDP and redirect
Hi
I My BigIP is SP
My Logout URI is /logout
when client request /logout
I create a irule for logout and close APM session
when HTTP_REQUEST { if { [string tolower [HTTP::uri]] con...
youssef1
Cumulonimbus
Jun 06, 2018Hi,
try this:
when HTTP_REQUEST {
if { [string tolower [HTTP::uri]] contains "/logout" } {
ACCESS::respond 302 noserver Location "/vdesk/hangup.php3"
return
}
}
If you set correctly apm part (SLS and SLR) you will be redirect automaticly to your IDP in order to logout then return to app.
Keep me in touch.
Regards