J Vazquez
J Vazquez

Reputation: 15

SOAPException IOException

I'm a noob in java! I have a java Application in a OAS server, When I try to call a web service in another server return this excepción

[SOAPException: faultCode=SOAP-ENV:IOException; msg=Connection timed out;targetException=java.net.ConnectException: Connection timed out]

I don't have idea what is the problem or the cause. Any ideas?

Upvotes: 0

Views: 418

Answers (1)

jdk22
jdk22

Reputation: 3

Recently I had the same exception when calling WS from client. The problem was pretty simple (beside the fact that error message was not helpful at all) - there was a proxy server between the client and server, I had to add proxy settings (host, port) to the JVM (parameters -Dhttp.proxyHost=x.x.x.x -Dhttp.proxyPort=xxxx).

Upvotes: 0

Related Questions