Package test.interop.whitemesa.round2.util

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


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

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


     */
    public void testR2BaseEchoFloat()  throws AxisFault {
        url = "http://soap.4s4c.com/ilab2/soap.asp";
        soapAction = "urn:interopLab#echoFloat";

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

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

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

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

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

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

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

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

        util = new Round2EchoFloatClientUtil();
        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "sunBaseFloatRes.xml";
        boolean results = compare(retEnv, tempPath);
        assertTrue(results);
    }
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

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

        util = new Round2EchoIntegerArrayclientUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "ESBaseIntegerArrayRes.xml";
        assertR2DefaultEchoIntegerArrayResult(retEnv);
    }
View Full Code Here

TOP

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

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.