How to specify JAXBContext implementation in weblogic 12.1.3
I have created a MDB in java using JAXB to parse the xml content. This MDB is working from a long time now (about 3 years) on a 10.3.4 weblogic server. Now I've to migrate it on a weblogic 12.1.3 server, and for a reason I'm not knowing yet, the implemention choose by weblogic isn't the same as I want. But I can't figure out how to set it. Right now my code init code is this : private JAXBContext getJAXBContext() throws JAXBException { if (v1JaxbContext == null) { v1JaxbContext = JAXBContext.newInstance(MyClass.class); } System.out.println("jaxbContext : "+v1JaxbContext.getClass().getName());