Start a Conversation

This post is more than 5 years old

Solved!

Go to Solution

3985

January 18th, 2011 07:00

AutoReconnect configuration via script

Hi,

We use a vbscript that lanches from Imprivata OneSign that passes the SSO User's credentials from the Imprivata Application through to the broker using an instance of the PNLLMCLI Client object (Set m_oClient = CreateObject("PNLLM.Client")

During the config of the broker request there are several options allowed, i.e.

  ' Set user experience properties.
  m_oClient.EnableAnimation = False
  m_oClient.EnableBitmapCaching = True
  m_oClient.EnableFullWindowDrag = False
  m_oClient.EnableThemes = True
  m_oClient.EnableWallpaper = True
  m_oClient.EnableBitmapAcceleration = False
  m_oClient.EnableLocalTextEcho = False
  m_oClient.EnableMultimediaRedirection = True
  m_oClient.EnableFlashRedirection = True
  m_oClient.EnableDesktopComposition = False
  m_oClient.EnableFontSmoothing = True
  m_oClient.EnableNetworkOptimization = False

  ' Set user experience properties.

  m_oClient.EnableAnimation = False

  m_oClient.EnableBitmapCaching = True

  m_oClient.EnableFullWindowDrag = False

  m_oClient.EnableThemes = True

  m_oClient.EnableWallpaper = True

  m_oClient.EnableBitmapAcceleration = False

  m_oClient.EnableLocalTextEcho = False

  m_oClient.EnableMultimediaRedirection = True

  m_oClient.EnableFlashRedirection = True

  m_oClient.EnableDesktopComposition = False

  m_oClient.EnableFontSmoothing = True

  m_oClient.EnableNetworkOptimization = False

However I need to disable the autoreconnect but I've tried

m_oClient.AutoReconnect = False

and

m_oClient.AutoReconnect = 0

but these cause the script to error.

Does anyone know the object function/feature used?

Thanks.

28 Posts

February 7th, 2011 20:00

Caleb,

- The correct property is "AutoReconnection".
- There is no "EnableAutoReconnect" property.

-Adam

228 Posts

February 1st, 2011 08:00

Hi Caleb,

I cannot see why your script would have a problem with the AutoReconnect option, this is a valid configuration property.

I do see one in the list above that may not be correct, I believe that 'EnableBitmapAcceleration' should be changed to 'EnableBitmapCaching'

Regards

David

February 7th, 2011 08:00

Hi,

I've tried;

m_oClient.AutoReconnect = False

m_oClient.AutoReconnect = 0

m_oClient.EnableAutoReconnect = False

m_oClient.EnableAutoReconnect = 0

and these all error the script with:

Object doesn't support this property or method

Any thoughts?

February 8th, 2011 08:00

Thanks Adam... seems to work a treat now.

101 Posts

February 9th, 2011 09:00

Hi David,

When scripting against PNLLM.Client, EnableBitmapAcceleration is the correct property for enabling Graphics Acceleration.

Paul

No Events found!

Top