Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

mohammed1's avatar
mohammed1
Icon for Nimbostratus rankNimbostratus
Aug 05, 2019

Auto launch portal acces

hello

how to auto launch portal acces after webtop authentication

 

thanks

4 Replies

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

    • Ahmed01's avatar
      Ahmed01
      Icon for Nimbostratus rankNimbostratus

      Hi Boneyard

      I am looking for this, can you please share how to do that? Auto launch one portal access on the webtop

      • boneyard's avatar
        boneyard
        Icon for MVP rankMVP

        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's avatar
    Sajid
    Icon for Cirrostratus rankCirrostratus

    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.