Package org.apache.axis2.interop.whitemesa.round2.util

Examples of org.apache.axis2.interop.whitemesa.round2.util.Round2EchoHexBinaryClientUtil


         */
        public void testR2GBTypedEchoNestedStruct() throws AxisFault {
            url = "http://mssoapinterop.org/stk/interopBTyped.wsdl";
            soapAction = "http://soapinterop.org/";

            util = new GroupbEchoNestedStructUtil();
            retEnv = SunRound2Client.sendMsg(util, url, soapAction);
            tempPath = resFilePath + "MStk2GroupbTypedNestedStructRes.xml";
            results = compare(retEnv, tempPath);
            assertTrue(results);
        }
View Full Code Here


     */
    public void testR2GBEchoSimpleTypesAsStruct() throws AxisFault {
        url = "http://mssoapinterop.org/stk/interopB.wsdl";
        soapAction = "http://soapinterop.org/";

        util = new GroupbEchoSimpleTypesAsStructUtil();
        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "MStk2GroupbSimpletypesAsStructRes.xml";
        results = compare(retEnv, tempPath);
        assertTrue(results);
    }
View Full Code Here

         */
        public void testR2GBTypedEchoSimpleTypesAsStruct() throws AxisFault {
            url = "http://mssoapinterop.org/stk/interopBTyped.wsdl";
            soapAction = "http://soapinterop.org/";

            util = new GroupbEchoSimpleTypesAsStructUtil();
            retEnv = SunRound2Client.sendMsg(util, url, soapAction);
            tempPath = resFilePath + "MStk2GroupbTypedSimpletypesAsStructRes.xml";
            results = compare(retEnv, tempPath);
            assertTrue(results);
        }
View Full Code Here

     */
    public void testR2GBEchoStructAsSimpleTypes() throws AxisFault {
        url = "http://mssoapinterop.org/stk/interopB.wsdl";
        soapAction = "http://soapinterop.org/";

        util = new GroupbEchoStructAsSimpleTypesUtil();
        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "MStk2GroupbStructAsSimpleTypesRes.xml";
        results = compare(retEnv, tempPath);
        assertTrue(results);
    }
View Full Code Here

         */
        public void testR2GBTypedEchoStructAsSimpleTypes() throws AxisFault {
            url = "http://mssoapinterop.org/stk/interopBTyped.wsdl";
            soapAction = "http://soapinterop.org/";

            util = new GroupbEchoStructAsSimpleTypesUtil();
            retEnv = SunRound2Client.sendMsg(util, url, soapAction);
            tempPath = resFilePath + "MStk2GroupbTypedStructAsSimpleTypesRes.xml";
            results = compare(retEnv, tempPath);
            assertTrue(results);
        }
View Full Code Here

     */
    public void testR2GCEchoVoid() throws AxisFault {
        url = "http://mssoapinterop.org/stk/InteropC.wsdl";
        soapAction = "http://soapinterop.org/";

        util = new GroupcVoidUtil();
        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "MStk2GroupcVoidRes.xml";
        results = compare(retEnv, tempPath);
        assertTrue(results);
    }
View Full Code Here

        params = getListenerParameters();


        param = transportIn.getParameter(NhttpConstants.ENDPOINTS_CONFIGURATION);
        if (param != null && param.getValue() != null) {
            endpoints = new URLEndpointsConfigurationFactory().create(param.getValue().toString());
        }
    }
View Full Code Here

     */
    public void testR2BaseEchoHexBinary() throws AxisFault {
        url = "http://easysoap.sourceforge.net/cgi-bin/interopserver";
        soapAction = "http://soapinterop.org/";

        util = new Round2EchoHexBinaryClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseHexBinaryRes.xml";
        assertR2DefaultEchoHexBinaryResult(retEnv);
    }
View Full Code Here

     */
    public void testR2BaseEchoHexBinary() throws AxisFault {
        url = "http://www.cincomsmalltalk.com/soap/interop";
        soapAction = "http://soapinterop.org/";

        util = new Round2EchoHexBinaryClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "sunBaseHexBinaryRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

     */
    public void testR2BaseEchoHexBinary() throws AxisFault {
        url = "http://www.mssoapinterop.org:80/Remoting/ServiceA.soap";
        soapAction = "http://soapinterop.org/";

        util = new Round2EchoHexBinaryClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "MSRemBaseHexBinaryRes.xml";
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_HEX_BINARY);
    }
View Full Code Here

TOP

Related Classes of org.apache.axis2.interop.whitemesa.round2.util.Round2EchoHexBinaryClientUtil

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.