[EMAIL PROTECTED] wrote:
When debugging our services, sometimes the time spent debugging is greater
that the time-out period for the client call. How can I increase the
allowed time-out period?
Thanks...
Chris
_________________________________________________
Scanned by MessageLabs for the Super Flux Friends
_________________________________________________
Can you try adding this to your client?
HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();
httpClientPolicy.setConnectionTimeout(0);
httpClientPolicy.setAllowChunking(true);
((HTTPConduit)
proxyFactory.getClientFactoryBean().getClient().getConduit()).setClient(httpClientPolicy);
Cheers,
Arul