Advertisement
sergio_101

XML for SAML SSO

Feb 23rd, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.32 KB | None | 0 0
  1.     <context-param>
  2.         <description>The identifiers of the service provider (this web application).</description>
  3.         <param-name>com.canto.saml.issuer.id</param-name>
  4.         <param-value>http://192.168.30.88:8080/portals</param-value>
  5.     </context-param>
  6.     <context-param>
  7.         <description>The path to a Java KeyStore file containing the certificate to be used for signing SAML requests. This can either be an absolute path or a relative path inside this web application</description>
  8.         <param-name>com.canto.saml.keystore.path</param-name>
  9.         <param-value>WEB-INF/conf/samlKeystore.jks</param-value>
  10.     </context-param>
  11.     <context-param>
  12.         <description>The password to access the Java keystore file.</description>
  13.         <param-name>com.canto.saml.keystore.password</param-name>
  14.         <param-value>*****</param-value>
  15.     </context-param>
  16.     <context-param>
  17.         <description>The alias name of the signing certificate in the Java keystore file.</description>
  18.         <param-name>com.canto.saml.keystore.signkey.alias</param-name>
  19.         <param-value>some-alias</param-value>
  20.     </context-param>
  21.     <context-param>
  22.         <description>The password to access the signing certificate in the Java keystore file. If this is missing then the keystore password will be used.</description>
  23.         <param-name>com.canto.saml.keystore.signkey.password</param-name>
  24.         <param-value>*****</param-value>
  25.     </context-param>
  26.     <context-param>
  27.         <description>The endpoint URL to receive the SAML response from the IDP via POST binding.</description>
  28.         <param-name>com.canto.saml.assertion.consumer.endpoint</param-name>
  29.         <param-value>http://192.168.30.80:8080/portals/saml/consumer</param-value>
  30.     </context-param>
  31.  
  32.     <context-param>
  33.         <description>The URL for SSO login. The placeholders ${user} and ${password} will be automatically replaced.</description>
  34.         <param-name>com.canto.saml.redirect.url.template</param-name>
  35.         <param-value>http://192.168.30.88:8080/portals/saml?user=${user}&amp;password=${password}</param-value>
  36.     </context-param>
  37.  
  38.     <context-param>
  39.         <description>the idp endpoint</description >
  40.         <param-name>com.canto.saml.idp.sso.endpoint</param-name>
  41.         <param-value>endopoint-here</param-value>
  42.     </context-param>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement