Soap Send Request Exception: org.apache.http.conn.HttpHostConnectException

I am trying for the first time a Soap web service test and get a Send Request Exception: org.apache.http.conn.HttpHostConnectException

The WSDL URL is correct and I do get the correct Service Function and Endpoint. But as soon as I test the request I get the following error message I pasted below.

I checked the preferences and neither in authentication nor in system I am using any proxy.

Does anyone has similar experience or has an advice on how to proceed?

com.kms.katalon.core.webservice.exception.SendRequestException: org.apache.http.conn.HttpHostConnectException: Connect to unopsgc573962.crp.unops.local:80 [unopsgc573962.crp.unops.local/10.51.62.62] failed: Connection timed out: connect
at com.kms.katalon.core.webservice.common.HttpUtil.sendRequest(HttpUtil.java:173)
at com.kms.katalon.core.webservice.common.BasicRequestor.send(BasicRequestor.java:58)
at com.kms.katalon.controller.WebServiceController.sendRequest(WebServiceController.java:170)
at com.kms.katalon.composer.webservice.parts.SoapServicePart$11.run(SoapServicePart.java:565)
at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:122)
Caused by: org.apache.http.conn.HttpHostConnectException: Connect to unopsgc573962.crp.unops.local:80 [unopsgc573962.crp.unops.local/10.51.62.62] failed: Connection timed out: connect
at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:151)
at org.apache.http.impl.conn.PoolingHttpClientConnectionManager.connect(PoolingHttpClientConnectionManager.java:353)
at org.apache.http.impl.execchain.MainClientExec.establishRoute(MainClientExec.java:380)
at org.apache.http.impl.execchain.MainClientExec.execute(MainClientExec.java:236)
at org.apache.http.impl.execchain.ProtocolExec.execute(ProtocolExec.java:184)
at org.apache.http.impl.execchain.RetryExec.execute(RetryExec.java:88)
at org.apache.http.impl.client.InternalHttpClient.doExecute(InternalHttpClient.java:184)
at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82)
at com.kms.katalon.core.webservice.common.HttpUtil.sendRequest(HttpUtil.java:145)
… 4 more
Caused by: java.net.ConnectException: Connection timed out: connect
at org.apache.http.conn.socket.PlainConnectionSocketFactory.connectSocket(PlainConnectionSocketFactory.java:74)
at org.apache.http.impl.conn.DefaultHttpClientConnectionOperator.connect(DefaultHttpClientConnectionOperator.java:134)
… 12 more

This message tells that the HTTP server did not respond to the request from your test at all. This message does not tell the reason why the server did not respond.

You should check the log of HTTP server. Possibly you would find some message that tells why the server discarded the request and dis not respond.

It is possible that in the server’s log you find no log about the request from your test. In that case, the server did not receive the request at all. Your request went away somewhere. But where has it gone? ---- who knows but you.

1 Like