Citrix Access Gateway Advanced 4.x
From Swivel Knowledgebase Wiki
Contents |
Introduction
This document covers the integration of Citrix Access Gateway Advanced edition 4.x.
Prerequisites
PINsafe 3.x
The CAG 4.5 integration guide is available here: Citrix Access Gateway Advanced edition 4.5
The CAG 4.5.8 integration guide is available here: Citrix Access Gateway Advanced edition 4.5.8
Note: For PINsafe Single Channel authentication the PINsafe server IP needs to be reachable by the client (i.e. this means an external IP address or a NAT for the PINsafe server IP). An SSL certificate is usually installed on the PINsafe server to prevent the browser from displaying errors regarding self signed certificates or sites without SSL certification. Swivel Secure can assist with the deployment of the certificate, but this must be purchased and applied for by the end user or their reseller.
Additional Integration supplementary documentation is provided below
Baseline
Architecture
Installation
Ensure on the Logon Point Properties, that under Visibility, the check box is ticked for 'Allow external (gateway appliance) users access to this logon point. If not set, only internal users will have access to this logon point. This option must be set on the default logon point.'
PINsafe Integration Configuration
Access Device or Application Integration
Additional Installation Options
To prevent the auto-loading, remove (or comment out) the onBlur method on username:
// userField.onblur = ShowTuring;
to
userField.onblur = ShowTuring;
To stop image caching, add a random number to the image request + "&random=" + Math.round(Math.random()*1000000);
Example:
//Set the image SRC and make it visible
varImg.src = sUrl + sUser + "&random=" + Math.round(Math.random()*1000000);


