Question
2
Replies
464
Views
Posted: September 19, 2016
Last activity: September 21, 2016
Closed
Solved
URL for SAML SSO
How is the URL formed for SAML SSO log in?
Question
Question
Question
Discussion
Question
Question
Question
Question
Question
Question
How is the URL formed for SAML SSO log in?
Accepted Solution
Hi Kevin,
Thank you for the clarification. One more question:
I have a number of applications in Pega. How do I form the URL to point particualar URL? Or I do same URL and map the operator profiles for each application?
Pega Collaboration Center has detected you are using a browser which may prevent you from experiencing the site as intended. To improve your experience, please update your browser.
It is defined in web.xml. OOTB there are three AuthService defined, e.g. SAMLAuth is defined as follows - the URL is http://host:port/prweb/sso. For SAMLAuth1, URL is .../prweb/sso1, etc.
<servlet>
<servlet-name>sso</servlet-name>
<display-name>sso</display-name>
<description>sso</description>
<servlet-class>com.pega.pegarules.internal.web.servlet.WebStandardBoot</servlet-class>
<init-param>
<param-name>PegaEtierClass</param-name>
<!-- COMPONENTS: This was previously com.pega.pegarules.services.HttpAPI -->
<param-value>com.pega.pegarules.session.internal.engineinterface.service.HttpAPI</param-value>
</init-param>
<init-param>
<param-name>AuthenticationType</param-name>
<param-value>PRCustom</param-value>
</init-param>
<init-param>
<param-name>StatusPage</param-name>
<param-value>/diagnostic/status.jsp</param-value>
</init-param>
<init-param>
<param-name>AuthService</param-name>
<param-value>SAMLAuth</param-value>
</init-param>
<init-param>
<param-name>RuntimeServletName</param-name>
<param-value>sso</param-value>
</init-param>
<init-param>
<param-name>SecureServletName</param-name>
<param-value>sso</param-value>
</init-param>
</servlet>