Package test.interop.whitemesa.round2.util

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


     */
    public void testR2BaseEchoBoolean() throws AxisFault  {
        url = "http://www.mssoapinterop.org/asmx/simple.asmx";
        soapAction = "http://soapinterop.org/";

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


     */
    public void testR2BaseEchoBoolean() throws AxisFault  {
        url = "http://www.cs.fsu.edu/~engelen/interop2.cgi";
        soapAction = "http://soapinterop.org/";

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

     */
    public void testR2BaseEchoBoolean() throws AxisFault  {
        url = "http://explorer.ne.mediaone.net/app/interop/interop";
        soapAction = "http://soapinterop.org/";

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

     */
    public void testR2BaseEchoBoolean() throws AxisFault  {
        url = "http://www.soapware.org/xmethodsInterop";
        soapAction = "http://soapinterop.org/";

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

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

        util = new Round2EchoDateClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseDateRes.xml";
        assertR2DefaultEchoDateResult(retEnv);
    }
View Full Code Here

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

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

        log.info("This may fail if the echoed date format is different");   

      url = "http://www.mssoapinterop.org:80/Remoting/ServiceA.soap";
        soapAction = "http://soapinterop.org/";

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

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

        util = new Round2EchoDecimalClientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseDecimalRes.xml";
        assertR2DefaultEchoDecimalResult(retEnv);
    }
View Full Code Here

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

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

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

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

TOP

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

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.