31-Jul-2021 04:13
Hi Boneyard
I am looking for this, can you please share how to do that? Auto launch one portal access on the webtop
07-Nov-2021 07:03
i thought there was an option for this, but i can't find it anymore, probably wrong in my head.
Sajids idea is probably what you want.
11-Aug-2019 09:17
For SAML I have done same,
Network resources is having option for Auto Launch
For SAM
From SP to IdP Auto-Launch
when ACCESS_POLICY_COMPLETED {
switch -glob [string tolower [ACCESS::session data get session.server.landinguri]] {
"/abc"
{ACCESS::respond 302 Location "/saml/idp/res?id=/Common/abc"}
}
}
when ACCESS_ACL_ALLOWED {
switch -glob [string tolower [HTTP::uri]] {
"/abc"
{ACCESS::respond 302 Location "/saml/idp/res?id=/Common/abc"}
}
}
OR
SAML from IdP to SP auto Launch
when ACCESS_POLICY_COMPLETED {
ACCESS::respond 302 Location "/saml/idp/res?id=/Common/abc"
}
when ACCESS_ACL_ALLOWED {
ACCESS::respond 302 Location "/saml/idp/res?id=/Common/abc"
}
For Web Top Link figure out resource Name to try above rule.