1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/examples/FTP/CreateConnection.txt

32 lines
811 B
Plaintext
Raw Normal View History

2025-07-30 08:17:11 +03:00
 Host = "172.33.0.10";
2025-07-28 20:20:57 +03:00
Port = "21";
2025-07-17 22:02:56 +03:00
Login = "bayselonarrend";
Password = "12we...";
2025-07-28 20:20:57 +03:00
UseProxy = True;
FTPS = True;
2025-07-17 22:02:56 +03:00
2025-07-28 20:20:57 +03:00
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
2025-07-17 22:02:56 +03:00
2025-07-30 08:17:11 +03:00
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
2025-07-17 22:02:56 +03:00
2025-07-28 20:20:57 +03:00
If UseProxy Then
ProxyType = "http"; // http, socks5, socks4
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
2025-09-01 14:51:24 +03:00
TLSSettings = OPI_FTP.GetTLSSettings(True);
2025-07-28 20:20:57 +03:00
EndIf;
2025-07-17 22:02:56 +03:00
Result = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);