Package test.interop.whitemesa.round2

Examples of test.interop.whitemesa.round2.MStk2Round2InteropTest


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

        util = new Round2EchoStringArrayClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseStringArrayRes.xml";
        assertR2DefaultEchoStringArrayResult(retEnv);
    }
View Full Code Here


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

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

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

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

        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRING_ARR_1);
        assertValueIsInThePayload(retEnv,WhiteMesaConstants.ECHO_STRING_ARR_2);
View Full Code Here

     */
    public void testR2BaseEchoStringArray() throws AxisFault {
        url = "http://services.soaplite.com/interop.cgi";
        soapAction = "\"http://soapinterop.org/\"";

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

        assertR2DefaultEchoStringArrayResult(retEnv);
    }
View Full Code Here

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

        util = new Round2EchoStringclientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseStringRes.xml";
        assertR2DefaultEchoStringResult(retEnv);
    }
View Full Code Here

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

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

    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

     */
    public void testR2BaseEchoString() throws AxisFault {
        url = "http://services.soaplite.com/interop.cgi";
        soapAction = "\"http://soapinterop.org/\"";

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

        assertR2DefaultEchoStringResult(retEnv);
    }
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

TOP

Related Classes of test.interop.whitemesa.round2.MStk2Round2InteropTest

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.