There are a couple in the systests. For example: systests/src/test/java/org/apache/cxf/systest/outofband/header/cxf.xml
For what you would need, you would add the AllowChunking attribute to the http:client element. You could also do it programatically. I think you can do something like: Client client = ClientProxy.getClient(port); HTTPConduit cond = (HTTPConduit)client.getConduit(); cond.getClient().setAllowChunking(false); That may need to be done before the first hit. Not really sure though. Dan On Monday 17 September 2007, Glen Mazza wrote: > Do we have any documentation (or examples) on client-side > configuration using Spring? I can't seem to find it anywhere. > > Thanks, > Glen > > Am Samstag, den 15.09.2007, 18:50 -0700 schrieb Daniel Kulp (JIRA): > > Daniel Kulp commented on CXF-945: > > --------------------------------- > > > > > > Glen, > > > > In the client side spring config, you can set the client side to set > > "AllowChunking=false" for the client http config. That's definitely > > slower (cannot do full streaming), but should work. -- J. Daniel Kulp Principal Engineer IONA P: 781-902-8727 C: 508-380-7194 [EMAIL PROTECTED] http://www.dankulp.com/blog
