use of org.apache.axiom.om.OMElement in project webservices-axiom by apache.
the class ElementSerializerTest method testElementSerilizationCacheOff.
public void testElementSerilizationCacheOff() throws Exception {
OMElement elt = builder.getDocumentElement();
elt.serialize(writer);
}
use of org.apache.axiom.om.OMElement in project webservices-axiom by apache.
the class OMElementHelperTest method testImportOMElement.
public void testImportOMElement() throws Exception {
OMElement documentElement = OMXMLBuilderFactory.createOMBuilder(OMAbstractFactory.getOMFactory(), SOAPSampleSet.WSA.getMessage(SOAPSpec.SOAP11).getInputStream()).getDocumentElement();
// first lets try to import an element created from llom in to llom factory. This should return the same element
assertTrue(ElementHelper.importOMElement(documentElement, OMAbstractFactory.getOMFactory()) == documentElement);
// then lets pass in an OMElement created using llom and pass DOOMFactory
OMElement importedElement = ElementHelper.importOMElement(documentElement, OMAbstractFactory.getMetaFactory(OMAbstractFactory.FEATURE_DOM).getOMFactory());
assertTrue(importedElement != documentElement);
assertTrue(importedElement.getOMFactory() == OMAbstractFactory.getMetaFactory(OMAbstractFactory.FEATURE_DOM).getOMFactory());
documentElement.close(false);
}
use of org.apache.axiom.om.OMElement in project webservices-axiom by apache.
the class CharacterEncodingTest method runTest.
public void runTest(String value, String expected) throws XMLStreamException, FactoryConfigurationError, IOException {
SOAPFactory factory = OMAbstractFactory.getSOAP12Factory();
SOAPEnvelope envelope = factory.getDefaultEnvelope();
String ns = "http://testuri.org";
OMNamespace namespace = factory.createOMNamespace(ns, "tst");
String ln = "Child";
OMElement bodyChild = factory.createOMElement(ln, namespace);
bodyChild.addChild(factory.createOMText(value));
envelope.getBody().addChild(bodyChild);
ByteArrayOutputStream byteOutStr = new ByteArrayOutputStream();
OMOutputFormat outputFormat = new OMOutputFormat();
outputFormat.setCharSetEncoding(UTF_16);
envelope.serialize(byteOutStr, outputFormat);
ByteArrayInputStream byteInStr = new ByteArrayInputStream(byteOutStr.toByteArray());
SOAPModelBuilder builder = OMXMLBuilderFactory.createSOAPModelBuilder(byteInStr, UTF_16);
SOAPEnvelope resultEnv = builder.getSOAPEnvelope();
OMElement bodyChildResult = resultEnv.getBody().getFirstElement();
assertNotNull("No child in body element", bodyChildResult);
String result = bodyChildResult.getText();
assertNotNull("No value for testParam param", result);
assertEquals("Expected result not received.", expected, result);
builder.close();
}
use of org.apache.axiom.om.OMElement in project webservices-axiom by apache.
the class ElementSerializerTest method testDualNamespaces2.
public void testDualNamespaces2() throws Exception {
OMFactory factory = OMAbstractFactory.getOMFactory();
OMNamespace ns1 = factory.createOMNamespace("bar", "x");
OMElement root = factory.createOMElement("root", ns1);
OMNamespace ns2 = root.declareNamespace("bar", "y");
OMElement elt1 = factory.createOMElement("foo", ns1);
OMElement elt2 = factory.createOMElement("yuck", ns2);
OMText txt1 = factory.createOMText(elt2, "blah");
elt2.addChild(txt1);
elt1.addChild(elt2);
root.addChild(elt1);
root.serialize(writer);
}
use of org.apache.axiom.om.OMElement in project webservices-axiom by apache.
the class OMAttributeHelperTest method testImportOMAttribute.
public void testImportOMAttribute() {
//Convert from OM to DOOM.
OMFactory omf = OMAbstractFactory.getOMFactory();
OMNamespace ns1 = omf.createOMNamespace("http://nsurl", "prefix");
OMAttribute attr1 = omf.createOMAttribute("attr1", ns1, "attr1value");
OMFactory doomf = OMAbstractFactory.getMetaFactory(OMAbstractFactory.FEATURE_DOM).getOMFactory();
OMElement ome1 = doomf.createOMElement("element", ns1.getNamespaceURI(), ns1.getPrefix());
AttributeHelper.importOMAttribute(attr1, ome1);
assertNotSame(attr1, ome1.getAttribute(attr1.getQName()));
assertEquals(attr1.getAttributeValue(), ome1.getAttribute(attr1.getQName()).getAttributeValue());
//Convert from DOOM to OM.
OMNamespace ns2 = doomf.createOMNamespace("http://nsurl", "prefix");
OMAttribute attr2 = doomf.createOMAttribute("attr2", ns2, "attr2value");
OMElement ome2 = omf.createOMElement("element", ns2.getNamespaceURI(), ns2.getPrefix());
AttributeHelper.importOMAttribute(attr2, ome2);
assertNotSame(attr2, ome2.getAttribute(attr2.getQName()));
assertEquals(attr2.getAttributeValue(), ome2.getAttribute(attr2.getQName()).getAttributeValue());
//OM only.
OMNamespace ns3 = omf.createOMNamespace("http://nsurl", "prefix");
OMAttribute attr3 = omf.createOMAttribute("attr3", ns3, "attr3value");
OMElement ome3 = omf.createOMElement("element", ns3.getNamespaceURI(), ns3.getPrefix());
AttributeHelper.importOMAttribute(attr3, ome3);
assertSame(attr3, ome3.getAttribute(attr3.getQName()));
//DOOM only.
OMNamespace ns4 = doomf.createOMNamespace("http://nsurl", "prefix");
OMAttribute attr4 = doomf.createOMAttribute("attr4", ns4, "attr4value");
OMElement ome4 = doomf.createOMElement("element", ns4.getNamespaceURI(), ns4.getPrefix());
AttributeHelper.importOMAttribute(attr4, ome4);
assertSame(attr4, ome4.getAttribute(attr4.getQName()));
}
Aggregations