mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-04 10:34:52 +02:00
Преобразование OPI -> OInt (workflow)
This commit is contained in:
parent
a8b25df3a9
commit
a31faa5d76
@ -258,8 +258,8 @@ Function SplitURL(Val URL) Export
|
||||
URL = StrReplace(URL, "http://", "");
|
||||
URL = StrReplace(URL, ":443", "");
|
||||
|
||||
Address = Right(URL, StrLen(URL) - StrFind(URL, "/", SearchDirection.FromStart) + 1);
|
||||
Server = Left(URL, StrFind(URL, "/", SearchDirection.FromStart) - 1);
|
||||
Address = Right(URL, StrLen(URL) - StrFind(URL, "/", SearchDirection.FromBegin) + 1);
|
||||
Server = Left(URL, StrFind(URL, "/", SearchDirection.FromBegin) - 1);
|
||||
|
||||
Try
|
||||
SSL = New OpenSSLSecureConnection;
|
||||
|
@ -258,8 +258,8 @@ Function SplitURL(Val URL) Export
|
||||
URL = StrReplace(URL, "http://", "");
|
||||
URL = StrReplace(URL, ":443", "");
|
||||
|
||||
Address = Right(URL, StrLen(URL) - StrFind(URL, "/", SearchDirection.FromStart) + 1);
|
||||
Server = Left(URL, StrFind(URL, "/", SearchDirection.FromStart) - 1);
|
||||
Address = Right(URL, StrLen(URL) - StrFind(URL, "/", SearchDirection.FromBegin) + 1);
|
||||
Server = Left(URL, StrFind(URL, "/", SearchDirection.FromBegin) - 1);
|
||||
|
||||
Try
|
||||
SSL = New OpenSSLSecureConnection;
|
||||
|
Loading…
Reference in New Issue
Block a user