Get welcome message
Receives the FTP servers welcome message
Function GetWelcomeMessage(Val Connection) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Connection | --conn | Arbitrary | ✔ | Existing connection or connection configuration |
Returns: Map Of KeyAndValue - Processing result
1C:Enterprise/OneScript code example
Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
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
TLSSettings = OPI_FTP.GetTLSSettings(True);
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.GetWelcomeMessage(Connection);
Else
Result = Connection; // Error of connection
EndIf;
- Bash
- CMD/Bat
oint ftp GetWelcomeMessage \
--conn "{'set':{'domain':'172.33.0.11','port':'21','passive':true,'read_timeout':'120','write_timeout':'120','advanced_resolve':true,'login':'bayselonarrend','password':'***'},'proxy':{'server':'127.0.0.1','port':'1080','proxy_type':'socks5','login':'proxyuser','password':'***'},'tls':{'use_tls':true,'accept_invalid_certs':true}}"
oint ftp GetWelcomeMessage ^
--conn "{'set':{'domain':'172.33.0.11','port':'21','passive':true,'read_timeout':'120','write_timeout':'120','advanced_resolve':true,'login':'bayselonarrend','password':'***'},'proxy':{'server':'127.0.0.1','port':'1080','proxy_type':'socks5','login':'proxyuser','password':'***'},'tls':{'use_tls':true,'accept_invalid_certs':true}}"
Result
{
"data": "220 Welcome Alpine ftp server https://hub.docker.com/r/delfer/alpine-ftp-server/",
"result": true,
"close_connection": {
"result": true
}
}