Is there a way to specify which XML parser cxf uses? Either through the cfx.xml file or programmatically?

Our app has the Woodstox parser on its classpath, and cxf seems to be using that by default. However, the Woodstox implementation seems to truncate large Base64 encoded byte arrays in the SOAP packet.

Removing Woodstox from the classpath eliminates this truncation problem, but that's not an option right now since other parts of our app also depends on Woodstox.

It would be ideal if I could simply tell cxf to use another XML parser. Is this possible?

link|improve this question

50% accept rate
feedback

1 Answer

Try setting the following system property:

javax.xml.stream.XMLInputFactory=com.sun.xml.internal.stream.XMLInputFactoryImpl

See XMLInputFactory#newInstance() for details on how the XMLInputFactory is configured

link|improve this answer
Thanks for the info about the XMLInputFactory, Kevin... While that didn't ultimately work for me that's good info to know... I ended up having to re-work our app to completely remove the dependency on on Woodstox... – CJS Feb 5 '10 at 20:36
You should be able to override the other XML parsing factories. Do you know which specific part is being used by Woodstox? – Kevin Feb 5 '10 at 21:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.