Generating JavaScript integration code from VIP Manager

Complete the following steps to generate the VIP Integration JavaScript code for AD FS:
  1. Log into VIP Manager.
  2. Click the
    Policies
    tab. The VIP Policy Configuration page is displayed.
  3. Under the
    Account
    tab, click the
    VIP Integration Code for JavaScript
    link. A new window is displayed.
  4. In the
    Method
    field, select
    Manual
    .
  5. Select
    User Name + Security Code
    as the authentication mode. Enter the following values that are case-sensitive to generate the VIP integration code.
    • User Name Field Name
      : username
    • Password Field Name
      : vippassword
    • Security Code Field Name
      : security_code
    • Form Name
      : loginForm
    • SSP IDP Proxy URL
      : You do not need to enter SSP IdP Proxy URL when integrating JavaScript only for Push.
  6. Save the generated JavaScript code.
  7. On the AD FS computer, access the folder where the VIP AD FS integration module is installed (typically
    C:\Program Files\Symantec\ADFS\
    ).
  8. Using a standard text editor, open the file
    ..\JScripts\IAScript.js
    , and paste the generated JavaScript code.
  9. Paste the following lines after the function
    vipAuth ()
    , immediately before the
    </script>
    tag:
    window.onload = function() { document.getElementById("continueButton").click(); }
  10. By default, the AD FS service URL is displayed in the VIP Access Push notification sent to your users. You can replace this URL with a custom URL, referrer URL, or custom text in the VIP Access Push notification (VIP Access Push notifications with custom URL and text.). Set the custom URL or string by adding the following line between the
    <script>
    and
    </script>
    tags:
    var rpURLOverride = "<url>"
    Where
    <custom string>
    is the custom text or URL (including http or https).
  11. Save the file.
    For a sample of VIP integration code, see Sample VIP integration code.