|
This online help file is for EFT Server version 6.2.x. For other versions of EFT Server, please refer to http://help.globalscape.com/help/index.html. (If the Index and Contents are hidden, click Show Contents pane in the top left corner of this topic.) |
|
Available in EFT Server 6.2 and later. |
The ICIServer::ConnectEx method allows an administrator to login to EFT Server using Integrated Windows Authentication (IWA) or Windows administrator login credentials. Refer to the AdminLoginType enumeration for more information about the types of EFT Server administrator logins (LoginType).
HRESULT ConnectEx(
[in] BSTR Host, // Host to connect to
[in] long nPort, // Port to connect to
[in] AdminLoginType nLoginType, // Login way
[in] BSTR Login, // Username (for EFT Server-managed or NetLogon)
[in] BSTR Password); // Password (for EFT Server-managed or NetLogon)
Examples (VBScript):
IWA:
SFTPServer.ConnectEx "EFTServer", 1100, IWALogin, "", ""
NetLogin:
SFTPServer.ConnectEx "localhost", 1100, 2, txtUserName, txtPassword