Forum Discussion

LarsS__178188's avatar
LarsS__178188
Icon for Nimbostratus rankNimbostratus
Mar 22, 2016
Solved

APM - Delete SSO credentials after login

Hello everybody,   I couldn't find any solution on my issue so far, so I try my luck here.   We use APM to access a SAP Portal. To realize SSO with the F5 and the SAP Portal login side, our One...
  • Josiah_39459's avatar
    Mar 22, 2016

    Is the BW app a pool or a weblink or what? If SSO is being applied that means the request must be passing through the F5, so on whatever vip gets the request, check the HTTP_REQUEST event [HTTP::uri] and apply SSO::disable accordingly.

    e.g.

    when HTTP_REQUEST {
      if { [HTTP::uri] starts_with '/blahblahblah' } {
        WEBSSO::disable
      }
    }
    

    or

       when ACCESS_ACL_ALLOWED {
          if { [HTTP::uri] starts_with '/blahblahblah' } {
            WEBSSO::disable
          }
        }
    

    similar depending on your app and f5 config