Is there a way to specify which cxf XML parser is using? Or through the cfx.xml file or programmatically?
Our application has a Woodstox parser in its class, and cxf seems to use it by default. However, the Woodstox implementation seems to truncate large bytes with basic encoding in the SOAP package.
Removing Woodstox from the class path eliminates this truncation problem, but now it is not an option, as other parts of our application also depend on Woodstox.
It would be ideal if I could just tell cxf to use a different XML parser. Is it possible?
source
share