You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-27 22:18:36 +02:00
Main build (Jenkins)
This commit is contained in:
18
docs/en/examples/FTP/ChangeCurrentDirectory.txt
vendored
18
docs/en/examples/FTP/ChangeCurrentDirectory.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/ClearDirectory.txt
vendored
18
docs/en/examples/FTP/ClearDirectory.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/CloseConnection.txt
vendored
18
docs/en/examples/FTP/CloseConnection.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/CreateConnection.txt
vendored
18
docs/en/examples/FTP/CreateConnection.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/CreateNewDirectory.txt
vendored
18
docs/en/examples/FTP/CreateNewDirectory.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/DeleteDirectory.txt
vendored
18
docs/en/examples/FTP/DeleteDirectory.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/DeleteFile.txt
vendored
18
docs/en/examples/FTP/DeleteFile.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/ExecuteArbitraryCommand.txt
vendored
18
docs/en/examples/FTP/ExecuteArbitraryCommand.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/ExecuteCustomCommand.txt
vendored
18
docs/en/examples/FTP/ExecuteCustomCommand.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
Result = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
|
||||
|
||||
18
docs/en/examples/FTP/GetCurrentDirectory.txt
vendored
18
docs/en/examples/FTP/GetCurrentDirectory.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/GetFileData.txt
vendored
18
docs/en/examples/FTP/GetFileData.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/GetObjectSize.txt
vendored
18
docs/en/examples/FTP/GetObjectSize.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/GetProtocolFeatureList.txt
vendored
18
docs/en/examples/FTP/GetProtocolFeatureList.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
10
docs/en/examples/FTP/GetProxySettings.txt
vendored
10
docs/en/examples/FTP/GetProxySettings.txt
vendored
@@ -1,8 +1,8 @@
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
Result = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
18
docs/en/examples/FTP/GetWelcomeMessage.txt
vendored
18
docs/en/examples/FTP/GetWelcomeMessage.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/IsConnector.txt
vendored
18
docs/en/examples/FTP/IsConnector.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/ListObjects.txt
vendored
18
docs/en/examples/FTP/ListObjects.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/Ping.txt
vendored
18
docs/en/examples/FTP/Ping.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/SaveFile.txt
vendored
18
docs/en/examples/FTP/SaveFile.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/UpdatePath.txt
vendored
18
docs/en/examples/FTP/UpdatePath.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -13,12 +13,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
18
docs/en/examples/FTP/UploadFile.txt
vendored
18
docs/en/examples/FTP/UploadFile.txt
vendored
@@ -2,10 +2,10 @@
|
||||
|
||||
ImageDD = New BinaryData(Image);
|
||||
|
||||
Host = "172.33.0.10";
|
||||
Port = "21";
|
||||
Login = "bayselonarrend";
|
||||
Password = "12we...";
|
||||
Host = FunctionParameters["FTP_IP"];
|
||||
Port = FunctionParameters["FTP_Port"];
|
||||
Login = FunctionParameters["FTP_User"];
|
||||
Password = FunctionParameters["FTP_Password"];
|
||||
|
||||
UseProxy = True;
|
||||
FTPS = True;
|
||||
@@ -17,12 +17,12 @@
|
||||
|
||||
If UseProxy Then
|
||||
|
||||
ProxyType = "http"; // http, socks5, socks4
|
||||
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
||||
|
||||
ProxyAddress = "127.0.0.1";
|
||||
ProxyPort = "8071";
|
||||
ProxyLogin = "proxyuser";
|
||||
ProxyPassword = "12we...";
|
||||
ProxyAddress = FunctionParameters["Proxy_IP"];
|
||||
ProxyPort = FunctionParameters["Proxy_Port"];
|
||||
ProxyLogin = FunctionParameters["Proxy_User"];
|
||||
ProxyPassword = FunctionParameters["Proxy_Password"];
|
||||
|
||||
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user