Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

You can deploy SAML in scenarios where multiple Service Providers process SAML requests forwarded by a reverse-proxy or a load balancer. In order to configure SAML for deployment behind load balancer or reverse-proxy, please follow the below steps:

  1. Go to the ...<ConnectPortalInstallFolder>/resources_config/saml.
  2. Open SecurityContext.xml in the text editor.
  3. Set the IP address or domain name of Load Balancer as a value in the <entityBaseURL> parameter in the below format:

    <protocol_name>://<IP_address_or_domain_name>

    where,

    <protocol_name> is the name of the protocol. For example, http or https.

    <ip_address> is the IP address of the computer on which load balancer is configured.

    <domain_name> is the domain name.

    For example, http://www.myserver.com

  4. Set the values of the below properties in the <contextProvider> parameter. 

    Property Name
    Description
    schemeName of the scheme (http or https).
    serverNameName of the server.
    serverPortPort number of the server.
    includeServerPortInRequestURLTo include server port number in the URL or not. It must be false.
    contextPathPrefix of a URL path used to select the context(s) to which an incoming request is passed. A URL is in the format: http://hostname.com/contextPath/, where each of the path elements can be zero or more separated elements. It must be /adeptia.

    It will look like:

    <bean id="contextProvider" class="org.springframework.security.saml.context.SAMLContextProviderLB">
    <property name="scheme" value="http"/>
    <property name="serverName" value="www.myserver.com"/>
    <property name="serverPort" value="8080"/>
    <property name="includeServerPortInRequestURL" value="false"/>
    <property name="contextPath" value="/adeptia"/>
    </bean> 
  5. Save the file.
  • No labels