Another option is asynchronous client calls, first paragraph of here: http://www.jroller.com/gmazza/date/20080308
2008-04-22 Arul Dhesiaseelan wrote: > [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 >