Package test.interop.whitemesa.round1

Examples of test.interop.whitemesa.round1.Round1InteropTest


        compareXML(retEnv, tempPath);
    }


    public void testEchoFloatArray() throws AxisFault {
        util = new Round1FloatArrayUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1FloatArrayRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here


        tempPath = resFilePath + "Round1IntArrayRes.xml";
        compareXML(retEnv, tempPath);
    }

    public void testEchoFloat() throws AxisFault {
        util = new Round1FloatUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1FloatRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

        tempPath = resFilePath + "Round1IntegerRes.xml";
        compareXML(retEnv, tempPath);
    }

    public void testIntegerArray() throws AxisFault {
        util = new Round1IntArrayUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1IntArrayRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

        tempPath = resFilePath + "Round1StringArrayRes.xml";
        compareXML(retEnv, tempPath);
    }

    public void testInteger() throws AxisFault {
        util = new Round1IntegerUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1IntegerRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

        tempPath = resFilePath + "Round1VoidUtilRes.xml";
        compareXML(retEnv, tempPath);
    }

    public void testEchoStringArray() throws AxisFault {
        util = new Round1StringArrayUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1StringArrayRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

    String tempPath = "";
    SunClientUtil util;
    SunClient client = new SunClient();

    public void testEchoString() throws AxisFault {
        util = new Round1StringUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1StringUtilRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

        tempPath = resFilePath + "Round1StructRes.xml";
        compareXML(retEnv, tempPath);
    }

    public void testEchoStructArray() throws AxisFault {
        util = new Round1StructArrayUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1StructArrayRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

        tempPath = resFilePath + "Round1FloatArrayRes.xml";
        compareXML(retEnv, tempPath);
    }

    public void testEchoStruct() throws AxisFault {
        util = new Round1StructUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1StructRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

        tempPath = resFilePath + "Round1StringUtilRes.xml";
        compareXML(retEnv, tempPath);
    }

    public void testEchoVoid() throws AxisFault {
        util = new Round1VoidUtil();
        retEnv = client.sendMsg(util, url, soapAction);
        tempPath = resFilePath + "Round1VoidUtilRes.xml";
        compareXML(retEnv, tempPath);
    }
View Full Code Here

TOP

Related Classes of test.interop.whitemesa.round1.Round1InteropTest

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.