For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

Amnard's avatar
Amnard
Icon for Nimbostratus rankNimbostratus
Mar 20, 2014

APM SSO

In a multi-domain mode APM, only one web application requires a custom domain suffix while other applications only use username.

 

I need to pass username@something.domain.local to the User Name's Form Parameter. For form-based SSO, how do I pass along a domain suffix with the username?

 

Thank!

 

3 Replies

  • Hi Amnard,

    In your Visual Policy Editor you need to specify a SSO Credential mapping.

    In your Username assignment you just have to choose custom with this setting :

    mcget {session.logon.last.username}.mcget {session.logon.last.domain} 
    
  • Amnard's avatar
    Amnard
    Icon for Nimbostratus rankNimbostratus

    How would you handle when session.logon.last.domain is not the same domain that I need to add as domain suffix?

     

    Basically, I just need to append a string to the end of the username. Can I do it like this instead?

     

    mcget {session.logon.last.username}.{@something.domain.local}

     

  • You can concatenate 2 variables with that :

    session.logon.last.username = expr { [concat "[mcget {session.logon.last.username}]@something.domain.local" ] }