Forum Discussion

Yannick_385905's avatar
Yannick_385905
Icon for Nimbostratus rankNimbostratus
Apr 25, 2019

Change SAML SP ACS URL

Hello,

 

Just want to know if it's possible to change the Assertion Consumer Service URL of a Local SP Service that is by default : ?

 

I don't think it's possible, but who knows ?

 

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