Package test.interop.whitemesa.round2.util

Examples of test.interop.whitemesa.round2.util.GroupbEchoSimpleTypesAsStructUtil


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

      util = new Round2EchoStringclientUtil();
      retEnv = client.sendMsg(util, url, soapAction);
      tempPath = resFilePath + "MSRemBaseStringRes.xml";

      assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRING);
    } catch (AxisFault e) {
View Full Code Here


        log.info("This may fail if an echoed float value is different");
       
      url = "http://easysoap.sourceforge.net/cgi-bin/interopserver";
        soapAction = "http://soapinterop.org/";

        util = new Round2EchoStructArrayClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseStructArrayRes.xml";
        assertR2DefaultEchoStructArrayResult(retEnv);
    }
View Full Code Here

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

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

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

        util = new Round2EchoStructArrayClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "MSRemBaseStructArrayRes.xml";
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_STR_1);
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_STR_2);
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_ARRAY_STR_3);
View Full Code Here

        log.info("This may fail if an echoed float value is different");
       
      url = "http://easysoap.sourceforge.net/cgi-bin/interopserver";
        soapAction = "http://soapinterop.org/";

        util = new Round2EchoStructClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseStructRes.xml";
        assertR2DefaultEchoStructResult(retEnv);
    }
View Full Code Here

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

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

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

        util = new Round2EchoStructClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "MSRemBaseStructRes.xml";
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_INT);
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_FLOAT);
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRUCT_STRING);
View Full Code Here

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

        util = new Round2EchoVoidClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseVoidRes.xml";
        assertR2DefaultEchoVoidResult(retEnv);
    }
View Full Code Here

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

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

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

        util = new Round2EchoVoidClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "MSRemBaseVoidRes.xml";

    }
View Full Code Here

TOP

Related Classes of test.interop.whitemesa.round2.util.GroupbEchoSimpleTypesAsStructUtil

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.