private static String marshalChoiceRoot(String xsdUrl, Root root)
throws IOException, SAXException
{
StringWriter writer = new StringWriter();
MarshallerImpl marshaller = new MarshallerImpl();
marshaller.declareNamespace("chs", "http://www.jboss.org/test/xml/choice/");
//marshaller.setProperty(Marshaller.PROP_OUTPUT_INDENTATION, "false");
marshaller.marshal(xsdUrl,
new MappingObjectModelProvider(),
root,
writer
);