SOAPElement elem = factory.createElement("AnonTypeElementQualified",
"tns", "http://objectweb.org/type_test/types1");
elem.addNamespaceDeclaration("tns", "http://objectweb.org/type_test/types1");
SOAPElement floatElem = factory.createElement("varFloat", "tns",
"http://objectweb.org/type_test/types1");
floatElem.addTextNode("12.5");
elem.addChildElement(floatElem);
SOAPElement intElem = factory.createElement("varInt", "tns",
"http://objectweb.org/type_test/types1");
intElem.addTextNode("34");
elem.addChildElement(intElem);