Package org.apache.axis2.soap

Examples of org.apache.axis2.soap.SOAPFactory.createText()


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

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

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


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

        OMElement part = omfactory.createOMElement("inputBase64", "", null);
        part.addAttribute("xsi:type", "xsd:base64Binary", null);
        part.addChild(omfactory.createText("SGVsbG8gV29ybGQ="));

        operation.addChild(part);
        //reqEnv.getBody().addChild(method);
        return reqEnv;
View Full Code Here

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

        OMElement part = omfactory.createOMElement("inputBoolean", "", null);
        part.addAttribute("xsi:type", "xsd:boolean", null);
        part.addChild(omfactory.createText("true"));

        operation.addChild(part);
        //reqEnv.getBody().addChild(method);
        return reqEnv;
View Full Code Here

        part.addAttribute("xsi:type", "s:SOAPStructStruct", null);


        OMElement value0 = omfactory.createOMElement("varString", "", null);
        value0.addAttribute("xsi:type", "xsd:string", null);
        value0.addChild(omfactory.createText("strss fdfing1"));

        OMElement value1 = omfactory.createOMElement("varInt", "", null);
        value1.addAttribute("xsi:type", "xsd:int", null);
        value1.addChild(omfactory.createText("25"));
View Full Code Here

        value0.addAttribute("xsi:type", "xsd:string", null);
        value0.addChild(omfactory.createText("strss fdfing1"));

        OMElement value1 = omfactory.createOMElement("varInt", "", null);
        value1.addAttribute("xsi:type", "xsd:int", null);
        value1.addChild(omfactory.createText("25"));

        OMElement value2 = omfactory.createOMElement("varFloat", "", null);
        value2.addAttribute("xsi:type", "xsd:float", null);
        value2.addChild(omfactory.createText("25.23"));
View Full Code Here

        value1.addAttribute("xsi:type", "xsd:int", null);
        value1.addChild(omfactory.createText("25"));

        OMElement value2 = omfactory.createOMElement("varFloat", "", null);
        value2.addAttribute("xsi:type", "xsd:float", null);
        value2.addChild(omfactory.createText("25.23"));

        OMElement value3 = omfactory.createOMElement("varStruct", "", null);

        //OMElement part31 = omfactory.createOMElement("inputStruct", "", null);
View Full Code Here

        //OMElement part31 = omfactory.createOMElement("inputStruct", "", null);

        OMElement value30 = omfactory.createOMElement("varString", "", null);
        value30.addAttribute("xsi:type", "xsd:string", null);
        value30.addChild(omfactory.createText("strss fdfing1"));

        OMElement value31 = omfactory.createOMElement("varInt", "", null);
        value31.addAttribute("xsi:type", "xsd:int", null);
        value31.addChild(omfactory.createText("25"));
View Full Code Here

        value30.addAttribute("xsi:type", "xsd:string", null);
        value30.addChild(omfactory.createText("strss fdfing1"));

        OMElement value31 = omfactory.createOMElement("varInt", "", null);
        value31.addAttribute("xsi:type", "xsd:int", null);
        value31.addChild(omfactory.createText("25"));

        OMElement value32 = omfactory.createOMElement("varFloat", "", null);
        value32.addAttribute("xsi:type", "xsd:float", null);
        value32.addChild(omfactory.createText("25.23"));
View Full Code Here

        value31.addAttribute("xsi:type", "xsd:int", null);
        value31.addChild(omfactory.createText("25"));

        OMElement value32 = omfactory.createOMElement("varFloat", "", null);
        value32.addAttribute("xsi:type", "xsd:float", null);
        value32.addChild(omfactory.createText("25.23"));

        value3.addChild(value30);
        value3.addChild(value31);
        value3.addChild(value32);
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.createText("string"));
       // header.addChild(headerChild);
        header.addChild(block1);

        SOAPHeaderBlock block2 = header.addHeaderBlock("echoMeStructRequest",hns);
        block2.addAttribute("xsi:type","s:SOAPStruct",null);
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.