Package org.apache.axis2.soap

Examples of org.apache.axis2.soap.SOAPBody


        reqEnv.declareNamespace("http://soapinterop.org/", "tns");
        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");

        OMElement operation = omfactory.createOMElement("echoVoid", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        return reqEnv;

    }
View Full Code Here


        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "ns1");
        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestList", "ns2");
        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");

        OMElement operation = omfactory.createOMElement("echoLinkedList", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        OMElement part = omfactory.createOMElement("param0", "", null);
        part.addAttribute("xsi:type", "s:List", null);


        OMElement value00 = omfactory.createOMElement("varInt", "", null);
        value00.addAttribute("xsi:type", "xsd:int", null);
        value00.addChild(omfactory.createText("255"));
        OMElement value01 = omfactory.createOMElement("varString", "", null);
        value01.addAttribute("xsi:type", "xsd:string", null);
        value01.addChild(omfactory.createText("Axis2"));
        OMElement value02 = omfactory.createOMElement("child", "", null);
        //value02.addAttribute("xsi:type", "xsd:anyType", null);
        value02.addAttribute("href", "#ID1", null);


        OMElement part2 = omfactory.createOMElement("item0", null);
        part2.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        part2.addAttribute("xsi:type", "s:List", null);
        part2.addAttribute("id", "ID1", null);


        OMElement value10 = omfactory.createOMElement("varInt", "", null);
        value10.addAttribute("xsi:type", "xsd:int", null);
        value10.addChild(omfactory.createText("21"));
        OMElement value11 = omfactory.createOMElement("varString", "", null);
        value11.addAttribute("xsi:type", "xsd:string", null);
        value11.addChild(omfactory.createText("LSF"));
        OMElement value12 = omfactory.createOMElement("child", "", null);
        value12.addAttribute("xsi:type", "xsd:anyType", null);
        value12.addAttribute(" xsi:nil", "1", null);
//
//        OMElement item2 = omfactory.createOMElement("item0", null);
//
//        OMElement value20 = omfactory.createOMElement("varString", "", null);
//        value20.addAttribute("xsi:type", "xsd:string", null);
//        value20.addChild(omfactory.createText("strss fdfing1"));
//        OMElement value21 = omfactory.createOMElement("varInt", "", null);
//        value21.addAttribute("xsi:type", "xsd:int", null);
//        value21.addChild(omfactory.createText("25"));
//        OMElement value22 = omfactory.createOMElement("varFloat", "", null);
//        value22.addAttribute("xsi:type", "xsd:float", null);
//        value22.addChild(omfactory.createText("25.23"));

        part.addChild(value00);
        part.addChild(value01);
        part.addChild(value02);

        part2.addChild(value10);
        part2.addChild(value11);
        part2.addChild(value12);
//
//        item2.addChild(value20);
//        item2.addChild(value21);
//        item2.addChild(value22);

//        part.addChild(item0);
//        part.addChild(item1);
//        part.addChild(item2);

        operation.addChild(part);
        body.addChild(part2);

        //reqEnv.getBody().addChild(method);
        return reqEnv;

    }
View Full Code Here

        reqEnv.declareNamespace("http://soapinterop.org/", "tns");
        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");

        OMElement operation = omfactory.createOMElement("echoStringArray", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        OMElement part = omfactory.createOMElement("inputStringArray", null);
        part.addAttribute("xsi:type", "SOAPENC:Array", null);
        part.addAttribute("SOAPENC:arrayType", "xsd:string[3]", null);
View Full Code Here

        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");
        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");

        OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        OMElement part = omfactory.createOMElement("inputString", "", null);
        part.addAttribute("xsi:type", "xsd:string", null);
        part.addChild(omfactory.createText("String Argument"));
View Full Code Here

        reqEnv.declareNamespace("http://soapinterop.org/", "tns");
        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");

        OMElement operation = omfactory.createOMElement("echoStructArray", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        OMElement part = omfactory.createOMElement("inputStructArray", "", null);
        part.addAttribute("xsi:type", "SOAP-ENC:Array", null);
        part.addAttribute("SOAP-ENC:arrayType", "s:SOAPStruct[3]", null);
View Full Code Here

        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");
        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");

        OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        OMElement part = omfactory.createOMElement("a", "", null);
        part.addAttribute("xsi:type", "xsd:string", null);
        part.addChild(omfactory.createText("strss fdfing1"));
View Full Code Here

        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
        //reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");
        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");

        OMElement operation = omfactory.createOMElement("echoSimpleTypesAsStruct", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        OMElement part0 = omfactory.createOMElement("inputString", "", null);
        part0.addAttribute("xsi:type", "xsd:string", null);
        part0.addChild(omfactory.createText("45ascasc  acasa asd52"));
View Full Code Here

        reqEnv.declareNamespace("http://soapinterop.org/", "tns");
        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");

        OMElement operation = omfactory.createOMElement("echoFloat", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        OMElement part = omfactory.createOMElement("inputFloat", "", null);
        part.addAttribute("xsi:type", "xsd:float", null);
        part.addChild(omfactory.createText("50.25"));
View Full Code Here

        block2.addChild(h2Val1);
        block2.addChild(h2Val2);
        block2.addChild(h2Val3);

        OMElement operation = omfactory.createOMElement("echoVoid", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);

        return reqEnv;

    }
View Full Code Here

        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");
        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
        reqEnv.declareNamespace("http://microsoft.com/wsdl/mime/textMatching/","tm");

        OMElement operation = omfactory.createOMElement("echoHexBinary", "http://soapinterop.org/", null);
        SOAPBody body = omfactory.createSOAPBody(reqEnv);
        body.addChild(operation);
        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.createText("AAABBAAE"));
View Full Code Here

TOP

Related Classes of org.apache.axis2.soap.SOAPBody

Copyright © 2018 www.massapicom. 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.