Forum Discussion

1 Reply

  • Hi,

    By default it's not possible. Can you explain why you want to change it?

    If you need to provide another UCS Url you can achieve your need using an irule.

    Give ACS url to your remote/local IDP :

    https://sp.domain.com/saml/new-uri/acs

    Then in your IDP add an irule in order to rewrite the right uri (something like that):

    when HTTP_REQUEST {
    
        if { [string tolower [HTTP::method]] eq "post" and [HTTP::uri] eq "/saml/new-uri/acs" } {
            HTTP::uri /saml/sp/profile/post/acs 
        }    
    }
    

    Let me know if you need more details. regards