AmaDaden wrote: > > After a lot of digging I figured out that it was cutting off the last > > from the soap:Envelope tag of the sent message. If I turn off > 'AllowChunking' I stop having this issue. I'm guessing that chunking is > breaking up the SOAP message in to several parts and that the last part > that consisted of only '>' was cut off by it for some reason. Can someone > tell me what happened? Do I have a bigger issue that I am not aware of? Is > this a CXF bug? >
Could be a CXF bug--something obscure, but I don't think we've had that bug before. CXF chunks by default, which works fine with most modern web service providers. Some older web services can't work with chunking, and will throw random errors if you try to do so, so chunking needs to be manually turned off in those cases. Glen -- View this message in context: http://www.nabble.com/Just-what-is-%27AllowChunking%27--tp19001650p19007783.html Sent from the cxf-user mailing list archive at Nabble.com.
