Re: Errnn238 after boot calling web services

2012-11-12 Thread Andreas Veithen
Are these connections expected to go through an HTTP proxy or are they direct connections? Andreas On Mon, Nov 12, 2012 at 8:18 AM, Oscar Rugama wrote: > > Hi Andreas, > > Please find attached stack trace of the ConnectException? > > Thanks in advance > Kind regards, > Oscar > > > >>

Re: Errnn238 after boot calling web services

2012-11-12 Thread Oscar Rugama
It goles through a Http Proxy, no direct connection Thanks Oscar El 12/11/2012, a las 19:19, "Andreas Veithen" escribió: > Are these connections expected to go through an HTTP proxy or are they > direct connections? > > Andreas > > On Mon, Nov 12, 2012 at 8:18 AM, Oscar Rugama wrote: >> >

Re: Errnn238 after boot calling web services

2012-11-12 Thread Andreas Veithen
The problem is that the following line in the stack trace is in the code path that is executed for direct connections: at org.apache.axis.components.net.DefaultSocketFactory.create(DefaultSocketFactory.java:120) How do you configure the HTTP proxy to be used by your Web application? And

RE: Errnn238 after boot calling web services

2012-11-12 Thread Martin Gainty
Oscar Then Its the proxy thats mangling the web-service call which prevents the connection.. can you run a quick trace thru the proxy using a utility such as curl? If you can post the trace results from curl we'll get back to you on how to fix the proxy so Axis will work Gracias/Obrigado Mart

RE: Errnn238 after boot calling web services

2012-11-12 Thread Oscar Rugama
Hi, I configure http connection like that: http System.setProperty("http.proxySet", "true"); System.setProperty("http.proxyHost", ConfigurationManager.getProperty("ws.proxy.host")); System.setProperty("http.proxyPort", ConfigurationMana