Determining Web Transfer Client Access (GetAppletEnabled)

Use the ICIClientSettings interface GetAppletEnabled method to set EFT Web Transfer client access setting for a user or User Settings Level. Refer to User Connection Protocols for an illustration of how this and other Client Settings Interface Methods and Properties can be accessed in the Administrator interface.

This method is available in EFT Server 3.5 and later.

 

In v6.0.x and earlier:

GetAppletEnabled([in]SFTPAdvBool val);

In v6.1 and later:

HRESULT AppletEnabled(

[out, optional] VARIANT *pInherited,    // is parameter value

// inherited from parent?

[out, retval] VARIANT_BOOL *pVal);      // parameter value

Example:

Setting the enabled/disabled state:

   slSettings = GetSettingsLevelSettings("Default Settings")

   slSettings.GetAppletEnabled( True )

 

Example for v6.1 and later:

If Client.AppletEnabled(isInherited) And isInherited Then

MsgBox "Applet is allowed for client because it is allowed for Settings Template"

End If