SOAP: use https

This commit is contained in:
vchikalkin 2023-12-01 10:36:27 +03:00
parent 82baca1bfd
commit 3504f9cfb9
4 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,7 @@
{
"ExtendedData": {
"inputs": [
"http://evolucia.elt-poisk.com/soap.php?wsdl"
"https://evolucia.elt-poisk.com/soap.php?wsdl"
],
"collectionTypes": [
"System.Array",

View File

@ -25385,6 +25385,7 @@ namespace ELTKasko
result.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
result.MaxReceivedMessageSize = int.MaxValue;
result.AllowCookies = true;
result.Security.Mode = System.ServiceModel.BasicHttpSecurityMode.Transport;
return result;
}
throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration));
@ -25394,7 +25395,7 @@ namespace ELTKasko
{
if ((endpointConfiguration == EndpointConfiguration.EltSoap))
{
return new System.ServiceModel.EndpointAddress("http://evolucia.elt-poisk.com/soap.php");
return new System.ServiceModel.EndpointAddress("https://evolucia.elt-poisk.com/soap.php");
}
throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration));
}

View File

@ -3,7 +3,7 @@
"Version": "15.0.40203.910",
"ExtendedData": {
"inputs": [
"http://evolucia.elt-poisk.com/soaposago.php?wsdl"
"https://evolucia.elt-poisk.com/soaposago.php?wsdl"
],
"collectionTypes": [
"System.Array",

View File

@ -6792,6 +6792,7 @@ namespace ELTOsago
result.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
result.MaxReceivedMessageSize = int.MaxValue;
result.AllowCookies = true;
result.Security.Mode = System.ServiceModel.BasicHttpSecurityMode.Transport;
return result;
}
throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration));
@ -6801,7 +6802,7 @@ namespace ELTOsago
{
if ((endpointConfiguration == EndpointConfiguration.EltSoap))
{
return new System.ServiceModel.EndpointAddress("http://evolucia.elt-poisk.com/soaposago.php");
return new System.ServiceModel.EndpointAddress("https://evolucia.elt-poisk.com/soaposago.php");
}
throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration));
}