Howto automatically minimise the Access Manager SSLVPN portal page on connection

  • 3763328
  • 24-Jan-2008
  • 26-Apr-2012

Environment


Novell Access Management 3 SSLVPN Server

Situation

An internal Citrix server is being protected by an Access Manager SSLVPN server. When the user accessed the Citrix Web Interface portal through the Access Gateway, the user is typically prompted to authenticate. Formfill is used to populate and submit the users credentials so that a single sign on experience occurs. The"Statements to Execute on Submit" parameter of the formfill policy is configured to launch the SSLVPN client by opening a new browser window and going to the SSLVPN URL (/sslvpn/login). When this happens, the SSLVPN connection takes place and a seperate SSLVPN browser session is displayed. IN many cases, the administrators want the SSLVPN connection to automatically come up BUT that the SSLVPN portal page gets minimised or placed in the system tray.

Resolution

Added following code to the "Statements to Execute on Submit" parameter to resize and move the SSLVPN browser window:

window.resizeTo(270,100);
window.moveTo(screen.width-100,screen.height-100);