Forum Discussion
- SajidCirrostratus
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.
do you have one portal access on the webtop and want that one automatically chosen?
- Ahmed01Nimbostratus
Hi Boneyard
I am looking for this, can you please share how to do that? Auto launch one portal access on the webtop
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.