I need to marshal one JAXB generated object to String. The problem is that it does not have an @XmlRootElement annotation. It is not a root element. The element in XSD looks like this:
<xs:complexType name="CompletedAssessmentInstance">
<xs:complexContent mixed="false">
<xs:extension base="tns:AssessmentInstance">
<xs:sequence>
<xs:element minOccurs="0" name="CompletionDate" type="xs:dateTime"/>
<xs:element minOccurs="0" name="CustomResultsXML" nillable="true" type="xs:string"/>
<xs:element minOccurs="0" name="NormedScores" nillable="true" type="tns:NormedScores"/>
<xs:element minOccurs="0" name="RawScore" type="xs:decimal"/>
<xs:element minOccurs="0" name="TimeTaken" type="xs:int"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="CompletedAssessmentInstance" nillable="true" type="tns:CompletedAssessmentInstance"/>
tns prefix points to this name space: xmlns:tns="http://www.cubiksonline.com/2009/08/AssessmentProvider"
I found out that I can do this to marshal not XML root elements with JAXB:
public static String completedAssessmentInstanceToString(CompletedAssessmentInstance assessmentInstance)
throws AssessmentException {
try {
Marshaller marshaller = jc.createMarshaller();
StringWriter writer = new StringWriter();
QName qname = new QName(
"http://www.cubiksonline.com/2009/08/AssessmentProvider",
"CompletedAssessmentInstance");
JAXBElement<CompletedAssessmentInstance> rootElement = new JAXBElement<CompletedAssessmentInstance>(
qname,
CompletedAssessmentInstance.class,
assessmentInstance);
marshaller.marshal(rootElement, writer);
return writer.toString();
} catch (JAXBException ex) {
LOGGER.error("JAXB Exception occurred.", ex);
throw new AssessmentException(RequestStatusValue.InvalidProjectConfiguration,
"Unable to marshal the CompletedAssessmentInstance data: " + assessmentInstance, ex);
}
}
I am initializing my JAXB context like this:
private static JAXBContext jc = createJaxbContext();
private static JAXBContext createJaxbContext() {
try {
ClassLoader cl = com.cubiksonline._2009._08.assessmentprovider.ObjectFactory.class.getClassLoader();
return JAXBContext.newInstance("com.cubiksonline._2009._08.assessmentprovider", cl);
} catch (JAXBException ex) {
LOGGER.error("Failed to create JAXB context: ", ex);
return null;
}
}
This package: com.cubiksonline._2009._08.assessmentprovider is the package where there are all JAXB generated classes including and CompletedAssessmentInstance. The problem is when the marshaller.marshal(rootElement, writer); is invoked I get the following exception:
Caused by: javax.xml.bind.MarshalException
- with linked exception:
[javax.xml.bind.JAXBException: com.cubiksonline._2009._08.assessmentprovider.CompletedAssessmentInstance is not known to this context]
at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:318)
at com.sun.xml.bind.v2.runtime.MarshallerImpl.marshal(MarshallerImpl.java:244)
at javax.xml.bind.helpers.AbstractMarshallerImpl.marshal(AbstractMarshallerImpl.java:95)
at com.groupgti.esb.assessments.cubiks.CubiksFactory.completedAssessmentInstanceToString(CubiksFactory.java:272)[647:com.groupgti.esb.online.tests.cubiks:1.2.0.SNAPSHOT]
... 40 more
Caused by: javax.xml.bind.JAXBException: com.cubiksonline._2009._08.assessmentprovider.CompletedAssessmentInstance is not known to this context
at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:246)
at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:261)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl$1.serializeBody(ElementBeanInfoImpl.java:144)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl$1.serializeBody(ElementBeanInfoImpl.java:189)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeBody(ElementBeanInfoImpl.java:316)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:323)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl.serializeRoot(ElementBeanInfoImpl.java:72)
at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsRoot(XMLSerializer.java:494)
at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:315)
... 43 more
Caused by: javax.xml.bind.JAXBException: com.cubiksonline._2009._08.assessmentprovider.CompletedAssessmentInstance is not known to this context
at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getBeanInfo(JAXBContextImpl.java:625)
at com.sun.xml.bind.v2.runtime.ElementBeanInfoImpl$1.serializeBody(ElementBeanInfoImpl.java:141)
... 49 more
Does anyone know where might the problem?
toString()on its implementation ofJAXBContextwill output all the mapped classes. Could you check that to make sure thatcom.cubiksonline._2009._08.assessmentprovider.CompletedAssessmentInstanceis included. Also since JAXB is a spec (JSR-222) you could try another implementation such as EclipseLink MOXy (I'm the MOXy lead) to see if this is just a bug in the JAXB RI. – Blaise Doughan Sep 20 '12 at 10:48cxf-codegen-pluginand not with the JAXB reference implementation. I would recommend filing a bug with CXF. – Blaise Doughan Sep 20 '12 at 11:24