Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Although I've added a jaxb.properties with MOXY factory and I see that the JAXB was switched to moxy, CXF has a method named createRIContext in the JAXBUtils class which loads hard coded the sun JAXB implementation.
Is there a way to override it and use moxy instead? The problematic code is the following:

// fall back if we're using another jaxb implementation
try {
     riContext = JAXBUtils.createRIContext(contextClasses
               .toArray(new Class[contextClasses.size()]), tns);
}

It loads hard coded the "com.sun.xml.bind.v2.ContextFactory" class and use it to create a JAXB context.

share|improve this question
possible duplicate of How to use Moxy XPath annotated beans in web services? – Blaise Doughan Nov 29 '12 at 18:26
Thanks for the link, but the link you provided discuss other implementations while my question is specifically on a CXF integration issue. In additional the idea of handling the xml directly (as suggested there) doesn't to me as a good direction. – Avner Levy Nov 29 '12 at 21:23
The problem is with JAX-WS (JSR-224) implementations having proprietary hooks into the JAXB (JSR-222) implementations they use for XML binding. The Provider mechanism is a standard JAX-WS mechanism to plug in your own binding solution which would allow you to leverage EclipseLink JAXB (MOXy). MOXy is supported by the JAX-WS implementations in WebLogic and GlassFish. – Blaise Doughan Nov 29 '12 at 21:34
I'm working with Spring / CXF. It seems that CXF is using sun implementation hard coded. See code bellow: // fall back if we're using another jaxb implementation try { riContext = JAXBUtils.createRIContext(contextClasses .toArray(new Class[contextClasses.size()]), tns); } Can you provide more information how the Provide mechanism can help me as a user of CXF to override the above code? – Avner Levy Nov 29 '12 at 21:53
Is there any progress on this topic ? I'd also like to use CXF (jax-ws) with MOXY to make it work with JPA annotated classes. – JayBee Feb 21 at 7:32
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.