Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Auto launch portal acces

mohammed1
Nimbostratus
Nimbostratus

hello

how to auto launch portal acces after webtop authentication

 

thanks

4 REPLIES 4

boneyard
MVP
MVP

do you have one portal access on the webtop and want that one automatically chosen?

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.

Sajid
Cirrostratus
Cirrostratus

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.