marshaller.setProperty(JBossXBConstants.JBXB_TYPE_QNAME, xmlType);
marshaller.setProperty(JBossXBConstants.JBXB_ROOT_QNAME, xmlName);
marshaller.setProperty(JBossXBConstants.JBXB_JAVA_MAPPING, getJavaWSDLMapping());
strwr = new StringWriter();
marshaller.marshal(objArr, strwr);
String was = strwr.toString();
assertNotNull("Resulting fragment cannot be null", was);
assertTrue("Resulting fragment cannot be empty", was.length() > 0);