Developer Q&A
SOAP Integration is not working
Hi Team,
We require you help as we are unable to create any work orders with SOAP Requests.
Hi,
May I have the detail of request payload that caused the error?
Thanks.
We are not able to get details in WSDL data from the below company details :
<int:LogInCompany>
<int:username>wsdk_hcl</int:username>
<int:password>****</int:password>
<int:companyname>JLL PG</int:companyname>
</int:LogInCompany>
private static string GetWsdlURLdata()
{
XmlDocument soapEnvelopeDocument = new XmlDocument();
soapEnvelopeDocument.LoadXml(
@"<soap:Envelope xmlns:soap=""http://www.w3.org/2003/05/soap-envelope"" xmlns:int=""http://corrigo.com/integration/"">
<soap:Header>
<int:CorrigoNetOptions>
<int:ImposeConcurrencyId>false</int:ImposeConcurrencyId>
<int:UpdateLastModified>false</int:UpdateLastModified>
<int:CanDeleteMissingEntity>false</int:CanDeleteMissingEntity>
<int:LockOnDataRetrieval>Default</int:LockOnDataRetrieval>
</int:CorrigoNetOptions>
\</soap:Header>
\<soap:Body>
\<int:GetCompanyWsdkUrl>
<!--Optional::-->
\<int:CompanyName>JLL PG\</int:CompanyName>
\<int:Protocol>HTTPS\</int:Protocol>
\</int:GetCompanyWsdkUrl>
\</soap:Body>
\</soap:Envelope>
");
HttpWebRequest webRequest = SessionCookieCreateWebRequest("<https://am-ce97a.corrigo.com/wsdk/CorrigoService.asmx?wsdl">, "<https://corrigo.com/integration/GetCompanyWsdkUrl">, "");
InsertSoapEnvelopeIntoWebRequest(soapEnvelopeDocument, webRequest);
IAsyncResult asyncResult = webRequest.BeginGetResponse(null, null);
asyncResult.AsyncWaitHandle.WaitOne();
string soapResult;
using (WebResponse webResponse = webRequest.EndGetResponse(asyncResult))
{
using (StreamReader rd = new StreamReader(webResponse.GetResponseStream()))
{
soapResult = rd.ReadToEnd();
}
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(soapResult);
XmlNodeList nodeList = xmlDoc.GetElementsByTagName("Url");
string Url = string.Empty;
for (int i = 0; i \<= nodeList.Count - 1; i++)
{
if (nodeList[i].InnerText.ToString() != "")
Url = nodeList[i].InnerText;
}
return Url;
}
}
Here is the payload to get wsdk endpoint:
POST /wsdk/CorrigoDiscover.asmx?wsdl=null HTTP/1.1
Host: am-apilocator.corrigo.com
Content-Type: application/soap+xml;charset=UTF-8;action="http://corrigo.com/integration/GetCompanyWsdkUrl"
Content-Length: 686
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:int="http://corrigo.com/integration/">
<soap:Header>
<int:CorrigoNetOptions>
<int:ImposeConcurrencyId>false</int:ImposeConcurrencyId>
<int:UpdateLastModified>false</int:UpdateLastModified>
<int:CanDeleteMissingEntity>false</int:CanDeleteMissingEntity>
<int:LockOnDataRetrieval>Default</int:LockOnDataRetrieval>
</int:CorrigoNetOptions>
</soap:Header>
<soap:Body>
<int:GetCompanyWsdkUrl>
<int:CompanyName>JLL PG</int:CompanyName><int:Protocol>HTTPS</int:Protocol>
</int:GetCompanyWsdkUrl>
</soap:Body>
</soap:Envelope>
The endpoint for JLL PG is https://az-am-ent-f3.corrigo.com/wsdk/CorrigoService.asmx?wsdl
Thanks.
While we have changed the endpoint for JLL PG to https://az-am-ent-f3.corrigo.com/wsdk/CorrigoService.asmx?wsdl
after execution of code we are getting an error details below
System.Net.WebException: 'Unable to connect to the remote server'
Inner Exception
SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 96.17.150.120:443
Hi,
Are you able to call LoginCompany to get Cookie?
Thanks.
As we have checked, before LoginCompany we are getting this error
System.Net.WebException: 'Unable to connect to the remote server'
Inner Exception
SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 96.17.150.120:443
Have you tested in Stage JLL PG instance? do you have the same error?
thanks.
While we tested 1.5 years back in the stage JLL PG, we have not got any errors
can you tell why this error below is occurring
System.Net.WebException: 'Unable to connect to the remote server'
Inner Exception
SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 96.17.150.120:443
Could you please switch to a different network/Ip and see if it will connect? thanks.
We have checked with different Networks but its not getting connected and we are getting the same error as below
System.Net.WebException: 'Unable to connect to the remote server'
Inner Exception
SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 96.17.150.120:443
Are you still able to connect to Stage JLL PG? do you connect Stage JLL PG in the same network/Ip as in JLL PG?
Thanks.
No we are not able to connect , when we are initializing with the same network or any other network we are not able to connect we are getting the error below
System.Net.WebException: 'Unable to connect to the remote server'
Inner Exception
SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 96.17.150.120:443
Thanks for the information, Will send to engineering team to do further investigation.
when can we expect the response From the Team
Could you please try to execute the following commands in the command prompt on the VM thatβs having the issue:
ping 96.17.150.120
ping google.com
ping az-am-ent-f3.corrigo.com
ping corrigo.com
Try opening az-am-ent-f3.corrigo.com, corrigo.com, and google.com from the browser inside the VM thatβs having the issue and let me know
the result, and will do additional checking. thanks
We are not able to login with the credentials on this website (https://az-am-ent-f3.corrigo.com/Customer/Login.aspx) please can you help to reset the password, and shared the details to the registered email, we are able to successfully login on to enterprise website https://az-am-ent-f3.corrigo.com/CorpNet/Login.aspx
Could you please check with account manager for the login issue? thanks.
ο»Ώ