Package org.apache.axiom.soap

Examples of org.apache.axiom.soap.SOAPFactory.createOMText()


        part1.addAttribute("xsi:type", "xsd:int", null);
        part1.addChild(omfactory.createOMText("4552"));

        OMElement part2 = omfactory.createOMElement("inputFloat", null);
        part2.addAttribute("xsi:type", "xsd:float", null);
        part2.addChild(omfactory.createOMText("450.52"));

        operation.addChild(part0);
        operation.addChild(part1);
        operation.addChild(part2);
        return reqEnv;
View Full Code Here


        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/",
                               null);

        OMElement part = omfactory.createOMElement("inputHexBinary", "", null);
        part.addAttribute("xsi:type", "xsd:hexBinary", null);
        part.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_HEX_BINARY));

        operation.addChild(part);
        return reqEnv;

    }
View Full Code Here

        part.addAttribute("arrayType", "xsd:string[3]", encNs);

        OMElement value0 = omfactory.createOMElement("varString", null);
        value0.declareNamespace(typeNs);
        value0.addAttribute("xsi:type", "xsd:string", null);
        value0.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_STRING_ARR_1));
        OMElement value1 = omfactory.createOMElement("varString", null);
        value1.declareNamespace(typeNs);
        value1.addAttribute("xsi:type", "xsd:string", null);
        value1.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_STRING_ARR_2));
        OMElement value2 = omfactory.createOMElement("varString", null);
View Full Code Here

        value0.addAttribute("xsi:type", "xsd:string", null);
        value0.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_STRING_ARR_1));
        OMElement value1 = omfactory.createOMElement("varString", null);
        value1.declareNamespace(typeNs);
        value1.addAttribute("xsi:type", "xsd:string", null);
        value1.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_STRING_ARR_2));
        OMElement value2 = omfactory.createOMElement("varString", null);
        value2.declareNamespace(typeNs);
        value2.addAttribute("xsi:type", "xsd:string", null);
        value2.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_STRING_ARR_3));
View Full Code Here

        value1.addAttribute("xsi:type", "xsd:string", null);
        value1.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_STRING_ARR_2));
        OMElement value2 = omfactory.createOMElement("varString", null);
        value2.declareNamespace(typeNs);
        value2.addAttribute("xsi:type", "xsd:string", null);
        value2.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_STRING_ARR_3));

        part.addChild(value0);
        part.addChild(value1);
        part.addChild(value2);
View Full Code Here

        OMElement part = omfactory.createOMElement("inputBase64", "", null);
        part.addAttribute("xsi:type", "xsd:base64Binary", null);
//        DataHandler data = new DataHandler(new ByteArrayDataSource("WebServices".getBytes()));
//        OMText base64EncodedText = omfactory.createOMText(data, true );
//        part.addChild(base64EncodedText);
        part.addChild(omfactory.createOMText(WhiteMesaConstants.ECHO_BASE_64));

        operation.addChild(part);
        return reqEnv;

    }
View Full Code Here

        SOAPHeader header = omfactory.createSOAPHeader(reqEnv);
        OMNamespace hns = reqEnv.declareNamespace("http://soapinterop.org/echoheader/",
                                                  "hns"); //xmlns:m0="http://soapinterop.org/echoheader/
        SOAPHeaderBlock block1 = header.addHeaderBlock("echoMeStringRequest", hns);
        block1.addAttribute("xsi:type", "xsd:string", null);
        block1.addChild(omfactory.createOMText("string"));
        header.addChild(block1);

        SOAPHeaderBlock block2 = header.addHeaderBlock("echoMeStructRequest", hns);
        block2.addAttribute("xsi:type", "s:SOAPStruct", null);
View Full Code Here

        SOAPHeaderBlock block2 = header.addHeaderBlock("echoMeStructRequest", hns);
        block2.addAttribute("xsi:type", "s:SOAPStruct", null);

        OMElement h2Val1 = omfactory.createOMElement("varString", null);
        h2Val1.addAttribute("xsi:type", "xsd:string", null);
        h2Val1.addChild(omfactory.createOMText("string"));

        OMElement h2Val2 = omfactory.createOMElement("varInt", null);
        h2Val2.addAttribute("xsi:type", "xsd:int", null);
        h2Val2.addChild(omfactory.createOMText("150"));
View Full Code Here

        h2Val1.addAttribute("xsi:type", "xsd:string", null);
        h2Val1.addChild(omfactory.createOMText("string"));

        OMElement h2Val2 = omfactory.createOMElement("varInt", null);
        h2Val2.addAttribute("xsi:type", "xsd:int", null);
        h2Val2.addChild(omfactory.createOMText("150"));

        OMElement h2Val3 = omfactory.createOMElement("varFloat", null);
        h2Val3.addAttribute("xsi:type", "xsd:float", null);
        h2Val3.addChild(omfactory.createOMText("456.321"));
View Full Code Here

        h2Val2.addAttribute("xsi:type", "xsd:int", null);
        h2Val2.addChild(omfactory.createOMText("150"));

        OMElement h2Val3 = omfactory.createOMElement("varFloat", null);
        h2Val3.addAttribute("xsi:type", "xsd:float", null);
        h2Val3.addChild(omfactory.createOMText("456.321"));

        block2.addChild(h2Val1);
        block2.addChild(h2Val2);
        block2.addChild(h2Val3);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.