*/
public void _testXmlCdataAnnotation(final JSONConfiguration configuration) throws Exception {
final JAXBContext jaxbContext = new JSONJAXBContext(ComplexXmlEventBean.class);
// Marshal
final Marshaller marshaller = jaxbContext.createMarshaller();
final StringWriter writer = new StringWriter();
final Object testInstance = ComplexXmlEventBean.createTestInstance();
marshaller.marshal(testInstance,
Stax2JsonFactory.createWriter(writer, configuration, ComplexXmlEventBean.class, jaxbContext));