ucSAMLUpdateRedirectURL

Purpose

ucSAMLUpdateRedirectURL is called during the sign on process when SAML is enabled.  It allows for the modification of the redirectURL used after a successful SAML assertion.

Applies To

The Sign On screen

Signature

public String ucSAMLUpdateRedirectURL( 
                      HttpServletRequest  request,
                      HttpServletResponse response,
                      String redirectURL) throws Exception {
     return redirectURL;
}

Notes

Example

In this example, user is redirected to the extraview.com website, after a successful sign on via SAML.

public String ucSAMLUpdateRedirectURL( 
                      HttpServletRequest  request,
                      HttpServletResponse response,
                      String redirectURL) throws Exception {
     return "https://www.extraview.com/";
}