I don't find the ca_defaultconsentform.html file !
search cancel

I don't find the ca_defaultconsentform.html file !

book

Article ID: 15156

calendar_today

Updated On:

Products

CA Single Sign On Secure Proxy Server (SiteMinder) CA Single Sign On SOA Security Manager (SiteMinder) CA Single Sign-On

Issue/Introduction



I'd like to configure user consent for the Federation. I've

read in the documentation that the ca_defaultconsentform.html file

should be present in the Secure Proxy Server under the /customization

folder, but it does not exist. Where is it ?

 

Environment

SPS 12.52 CR06 on Linux;Policy Server 12.52 CR006 on Windows;

Resolution

Actually the default consent form file can be found by default under

the <SPS/AG_install_path>/secure-proxy/customization folder. In case

of Web Agent Option Pack under <WAOP install

path>/webagent/win64/customization or <WAOP install

path>/webagent/customization if running in Linux

 

If you still don't find it, here's the code sample :

 

ca_defaultconsentform.html

 

<html>

   <head>

      <meta http-equiv="pragma" content="no-cache">

      <meta http-equiv="cache-control" content="no-cache">

 

      <title>Custom User Consent Form Example</title>

   </head>

   <body>

      <table border="0" width="100%">

         <tr>

            <td align="center" bgcolor="#FF0000">

               <b><font size="5">Please read the below information carefully.</font></b>

            </td>

         </tr>

         <tr>

            <td align="center">

               <font size="4">Your Federated Identity will be sent from $$userconsent_idpid$$ to $$userconsent_spid$$ to access the service you have requested.  Do you consent to this action?<p>We recommend you anser <i>No</i> unless you trust the Identity Provider<br>&nbsp;</font>

            </td>

         </tr>

         <tr>

            <td width="93%" align="center">

               <form method=post>

                  <input type=submit name=UserConsentYes tabindex =0 value="Yes" style="font-weight: bold">

                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

                  <input type=submit name=UserConsentNo value="No" style="font-weight: bold">

               </form>

            </td>

         </tr>

      </table>

   </body>

</html>