Discuss this help topic in SecureBlackbox Forum

TElSAMLRedirectBinding.RelayState

TElSAMLRedirectBinding     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies the value of the RelayState parameter.

Declaration

[C#]
    string RelayState;

[VB.NET]
    Property RelayState As String

[Pascal]
    property RelayState : string;

[C++]
    void get_RelayState(std::string &OutResult);
    void set_RelayState(const std::string &Value);

[PHP]
    string get_RelayState()
    void set_RelayState(string $Value)

[Java]
    String getRelayState();
    void setRelayState(String Value);

Description

According to SAML 2.0 specification, the RelayState parameter may be used by the SAML binding, in order to convey and preserve state information. If this parameter is present in a SAML request message, the responding party must include the same exact parameter into the response to this request.

In many applications, when using IdP-initiated single sign-on, the IdP uses RelayState to indicate to the SP the URL to which it should redirect after the successful sign-on.

See also:     URL    

Discuss this help topic in SecureBlackbox Forum