JBoss Community

Re: JBoss6 webservice read timeout

created by Oliver Specht in JBoss Web Services - View the full discussion

Since no one knows anything about ist, this is the solution I found:

 

Client cl = ClientProxy.getClient(services);

HTTPConduit http = (HTTPConduit) cl.getConduit();

HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();

httpClientPolicy.setConnectionTimeout(7200000);

httpClientPolicy.setReceiveTimeout(7200000);

http.setClient(httpClientPolicy);

Reply to this message by going to Community

Start a new discussion in JBoss Web Services at Community