You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2006/01/31 22:14:40 UTC

svn commit: r373912 [6/10] - in /webservices/axis2/trunk/java/modules/integration: itest-resources/interop/whitemesa/round2/ itest-resources/interop/whitemesa/round3/ itest/test/interop/mtom/ itest/test/interop/whitemesa/round1/ itest/test/interop/whit...

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/Soap12/WMRound2Soap12InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/Soap12/WMRound2Soap12InteropTest.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/Soap12/WMRound2Soap12InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/Soap12/WMRound2Soap12InteropTest.java Tue Jan 31 13:13:01 2006
@@ -19,8 +19,8 @@
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.soap.SOAPEnvelope;
 import test.interop.whitemesa.WhiteMesaIneterop;
-import test.interop.whitemesa.round2.SunRound2Client;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
+import test.interop.whitemesa.SunClient;
 import test.interop.whitemesa.round2.util.soap12.GroupbSoap12Echo2DStringArrayUtil;
 import test.interop.whitemesa.round2.util.soap12.GroupbSoap12EchoNestedArrayUtil;
 import test.interop.whitemesa.round2.util.soap12.GroupbSoap12EchoNestedStructUtil;
@@ -72,7 +72,8 @@
     String soapAction = "";
     String resFilePath = "interop/whitemesa/round2/SOAP12/";
     String tempPath = "";
-    SunRound2ClientUtil util;
+    SunClientUtil util;
+    SunClient client = new SunClient();
 
     /**
      * Round2
@@ -84,7 +85,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12StringUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_StringRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -99,7 +100,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12StringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_StringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -114,7 +115,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12IntegerUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_IntegerRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -129,7 +130,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2SOAP12EchoIntegerArrayclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_IntegerArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -144,7 +145,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoFloatClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_FloatRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -159,7 +160,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoFloatArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_FloatArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -174,7 +175,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoStructClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_StructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -189,7 +190,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoStructArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_StructArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -204,7 +205,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoVoidClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_VoidRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -219,7 +220,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoBase64ClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_Base64Res.xml";
         compareXML(retEnv, tempPath);
     }
@@ -234,7 +235,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoDateClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_DateRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -250,7 +251,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoHexBinaryUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_HexBinaryRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -265,7 +266,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoDecimalClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_DecimalRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -280,7 +281,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2Soap12EchoBooleanClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2_S12_BooleanRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -295,7 +296,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbSoap12EchoStructAsSimpleTypesUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2Gb_S12_StructAsSimpleTypesRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -310,7 +311,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbSoap12EchoSimpleTypesAsStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2Gb_S12_SimpleTypesAsStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -325,7 +326,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbSoap12Echo2DStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2Gb_S12_2DStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -340,7 +341,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbSoap12EchoNestedStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2Gb_S12_NestedStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -355,7 +356,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbSoap12EchoNestedArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMR2Gb_S12_NestedArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -370,7 +371,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcEchoStringUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcEchoStringRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -385,7 +386,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcIntergerUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcIntergerRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -400,7 +401,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -415,7 +416,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcIntegerArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcIntegerArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -430,7 +431,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Saop12GroupcFloatUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcFloatRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -445,7 +446,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcFloatArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcFloatArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -460,7 +461,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -475,7 +476,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcStructArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcStructArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -490,7 +491,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcVoidUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcVoidRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -505,7 +506,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcBase64Util();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcBase64Res.xml";
         compareXML(retEnv, tempPath);
     }
@@ -520,7 +521,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcHexBinaryUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcHexBinaryRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -535,7 +536,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new WMRound2Soap12GroupcBooleanUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMRound2Soap12GroupcBooleanRes.xml";
         compareXML(retEnv, tempPath);
     }

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SqlDataRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SqlDataRound2InteropTest.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SqlDataRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SqlDataRound2InteropTest.java Tue Jan 31 13:13:01 2006
@@ -19,6 +19,8 @@
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.soap.SOAPEnvelope;
 import test.interop.whitemesa.WhiteMesaIneterop;
+import test.interop.whitemesa.SunClientUtil;
+import test.interop.whitemesa.SunClient;
 import test.interop.whitemesa.round2.util.GroupbEcho2DStringArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedStructUtil;
@@ -50,7 +52,6 @@
 import test.interop.whitemesa.round2.util.Round2EchoStructArrayClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoStructClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoVoidClientUtil;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
 
 import java.io.File;
 
@@ -71,7 +72,8 @@
     String soapAction = "";
     String resFilePath = "interop/whitemesa/round2/";
     String tempPath = "";
-    SunRound2ClientUtil util;
+    SunClientUtil util;
+    SunClient client = new SunClient();
 
     /**
      * Round2
@@ -83,7 +85,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseStringRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -98,7 +100,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -113,7 +115,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseIntegerRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -123,12 +125,12 @@
      * Group Base
      * operation echoIntegerArray
      */
-    public void testR2BaseEchoIntegerArray() throws AxisFault  {
+    public void testR2BaseEchoIntegerArray() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerArrayclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseIntegerArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -138,12 +140,12 @@
      * Group Base
      * operation echoFloat
      */
-    public void testR2BaseEchoFloat()  throws AxisFault {
+    public void testR2BaseEchoFloat() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseFloatRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -153,12 +155,12 @@
      * Group Base
      * operation echoFloatArray
      */
-    public void testR2BaseEchoFloatArray()  throws AxisFault {
+    public void testR2BaseEchoFloatArray() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseFloatArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -168,12 +170,12 @@
      * Group Base
      * operation echoStruct
      */
-    public void testRBaseEchoStruct() throws AxisFault  {
+    public void testRBaseEchoStruct() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "";
 
         util = new Round2EchoStructClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -183,12 +185,12 @@
      * Group Base
      * operation echoStructArray
      */
-    public void testR2BaseEchoStructArray() throws AxisFault  {
+    public void testR2BaseEchoStructArray() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStructArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseStructArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -198,12 +200,12 @@
      * Group Base
      * operation echoVoid
      */
-    public void testR2BaseEchoVoid() throws AxisFault  {
+    public void testR2BaseEchoVoid() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoVoidClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseVoidRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -213,13 +215,13 @@
      * Group Base
      * operation echoBase64
      */
-    public void testR2BaseEchoBase64() throws AxisFault  {
-       // url = "http://soapclient.com/interop/sqldatainterop.wsdl";
-         url = "http://127.0.0.1:8080/interop/sqldatainterop.wsdl";
+    public void testR2BaseEchoBase64() throws AxisFault {
+        // url = "http://soapclient.com/interop/sqldatainterop.wsdl";
+        url = "http://127.0.0.1:8080/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBase64ClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseBase64Res.xml";
         compareXML(retEnv, tempPath);
     }
@@ -229,12 +231,12 @@
      * Group Base
      * operation echoBase64
      */
-    public void testR2BaseEchoDate() throws AxisFault  {
+    public void testR2BaseEchoDate() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDateClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseDateRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -245,12 +247,12 @@
      * Group Base
      * operation echoHexBinary
      */
-    public void testR2BaseEchoHexBinary() throws AxisFault  {
+    public void testR2BaseEchoHexBinary() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoHexBinaryClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseHexBinaryRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -260,12 +262,12 @@
      * Group Base
      * operation echoDecimal
      */
-    public void testR2BaseEchoDecimal() throws AxisFault  {
+    public void testR2BaseEchoDecimal() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDecimalClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseDecimalRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -275,12 +277,12 @@
      * Group Base
      * operation echoBoolean
      */
-    public void testR2BaseEchoBoolean() throws AxisFault  {
+    public void testR2BaseEchoBoolean() throws AxisFault {
         url = "http://soapclient.com/interop/sqldatainterop.wsdl";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBooleanClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataBaseBooleanRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -295,7 +297,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoStructAsSimpleTypesUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupbStructAsSimpleTypesRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -310,7 +312,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoSimpleTypesAsStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupbSimpletypesAsStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -325,7 +327,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEcho2DStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupb2DStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -340,7 +342,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupbNestedStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -355,7 +357,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupbNestedArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -370,7 +372,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcEchoStringUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcEchoStringRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -385,7 +387,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcIntergerUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcIntergerRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -400,7 +402,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -415,7 +417,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcIntegerArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcIntegerArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -430,7 +432,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcFloatUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcFloatRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -445,7 +447,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcFloatArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcFloatArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -460,7 +462,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -475,7 +477,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStructArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcStructArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -490,9 +492,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcVoidUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcVoidRes.xml";
-       compareXML(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -505,7 +507,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcBase64Util();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcBase64Res.xml";
         compareXML(retEnv, tempPath);
     }
@@ -520,7 +522,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcHexBinaryUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcHexBinaryRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -535,7 +537,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcBooleanUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SqlDataGroupcBooleanRes.xml";
         compareXML(retEnv, tempPath);
     }

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java Tue Jan 31 13:13:01 2006
@@ -19,6 +19,8 @@
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.soap.SOAPEnvelope;
 import test.interop.whitemesa.WhiteMesaIneterop;
+import test.interop.whitemesa.SunClientUtil;
+import test.interop.whitemesa.SunClient;
 import test.interop.whitemesa.round2.util.GroupbEcho2DStringArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedStructUtil;
@@ -50,7 +52,6 @@
 import test.interop.whitemesa.round2.util.Round2EchoStructArrayClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoStructClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoVoidClientUtil;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
 
 import java.io.File;
 
@@ -61,8 +62,6 @@
  * "base"     http://soapinterop.java.sun.com/round2/base?WSDL
  * "Group B"  http://soapinterop.java.sun.com/round2/groupb?WSDL
  * "Group C"  http://soapinterop.java.sun.com/round2/groupc?WSDL
- * <p/>
- * All Tests Pass
  */
 
 public class SunRound2InteropTest extends WhiteMesaIneterop {
@@ -73,7 +72,8 @@
     String soapAction = "";
     String resFilePath = "interop/whitemesa/round2/";
     String tempPath = "";
-    SunRound2ClientUtil util;
+    SunClientUtil util;
+    SunClient client = new SunClient();
 
     /**
      * Round2
@@ -85,7 +85,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseStringRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -100,7 +100,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SunBaseStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -115,7 +115,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseIntegerRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -130,7 +130,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerArrayclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseIntegerArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -145,7 +145,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseFloatRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -160,7 +160,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseFloatArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -175,7 +175,7 @@
         soapAction = "";
 
         util = new Round2EchoStructClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -190,7 +190,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStructArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseStructArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -205,7 +205,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoVoidClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseVoidRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -220,7 +220,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBase64ClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseBase64Res.xml";
         compareXML(retEnv, tempPath);
     }
@@ -235,7 +235,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDateClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseDateRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -251,7 +251,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoHexBinaryClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseHexBinaryRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -266,7 +266,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDecimalClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseDecimalRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -281,7 +281,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBooleanClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseBooleanRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -296,7 +296,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoStructAsSimpleTypesUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbStructAsSimpleTypesRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -311,7 +311,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoSimpleTypesAsStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbSimpletypesAsStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -326,7 +326,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEcho2DStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupb2DStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -341,7 +341,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbNestedStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -356,7 +356,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbNestedArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -371,7 +371,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcEchoStringUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcEchoStringRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -386,7 +386,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcIntergerUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcIntergerRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -401,7 +401,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcStringArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -416,7 +416,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcIntegerArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcIntegerArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -431,7 +431,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcFloatUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcFloatRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -446,7 +446,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcFloatArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcFloatArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -461,7 +461,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcStructRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -476,7 +476,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStructArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcStructArrayRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -491,7 +491,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcVoidUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcVoidRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -506,7 +506,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcBase64Util();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcBase64Res.xml";
         compareXML(retEnv, tempPath);
     }
@@ -521,7 +521,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcHexBinaryUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcHexBinaryRes.xml";
         compareXML(retEnv, tempPath);
     }
@@ -536,7 +536,7 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcBooleanUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "GroupcBooleanRes.xml";
         compareXML(retEnv, tempPath);
     }

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/VWRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/VWRound2InteropTest.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/VWRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/VWRound2InteropTest.java Tue Jan 31 13:13:01 2006
@@ -19,6 +19,8 @@
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.soap.SOAPEnvelope;
 import test.interop.whitemesa.WhiteMesaIneterop;
+import test.interop.whitemesa.SunClientUtil;
+import test.interop.whitemesa.SunClient;
 import test.interop.whitemesa.round2.util.GroupbEcho2DStringArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedStructUtil;
@@ -38,7 +40,6 @@
 import test.interop.whitemesa.round2.util.Round2EchoStructArrayClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoStructClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoVoidClientUtil;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
 
 import java.io.File;
 
@@ -48,8 +49,10 @@
  * WSDLs:-
  * "base"     http://www.cincomsmalltalk.com:8080/CincomSmalltalkWiki/DOWNLOAD/WebServices/vwInteropSchema.wsdl
  * "Group B"  http://www.cincomsmalltalk.com:8080/CincomSmalltalkWiki/DOWNLOAD/WebServices/vwInteropR2GroupB.wsdl
+ * <p/>
+ * All Tests fail due to an internal server error.
  */
-//todo All tests failed, Connection Failure
+
 
 public class VWRound2InteropTest extends WhiteMesaIneterop {
 
@@ -59,12 +62,8 @@
     String soapAction = "";
     String resFilePath = "interop/whitemesa/round2/";
     String tempPath = "";
-    SunRound2ClientUtil util;
-
-    public void testChack(){
-        //just addding a test case , since all the tase casea are fail
-    }
-
+    SunClientUtil util;
+    SunClient client = new SunClient();
 
     /**
      * Round2
@@ -76,9 +75,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseStringRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -91,9 +90,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "SunBaseStringArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -106,9 +105,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseIntegerRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -116,14 +115,14 @@
      * Group Base
      * operation echoIntegerArray
      */
-    public void testR2BaseEchoIntegerArray() throws AxisFault  {
+    public void testR2BaseEchoIntegerArray() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerArrayclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseIntegerArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -131,14 +130,14 @@
      * Group Base
      * operation echoFloat
      */
-    public void testR2BaseEchoFloat()  throws AxisFault {
+    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);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseFloatRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -146,14 +145,14 @@
      * Group Base
      * operation echoFloatArray
      */
-    public void testR2BaseEchoFloatArray()  throws AxisFault {
+    public void testR2BaseEchoFloatArray() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseFloatArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -161,14 +160,14 @@
      * Group Base
      * operation echoStruct
      */
-    public void testRBaseEchoStruct() throws AxisFault  {
+    public void testRBaseEchoStruct() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "";
 
         util = new Round2EchoStructClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -176,14 +175,14 @@
      * Group Base
      * operation echoStructArray
      */
-    public void testR2BaseEchoStructArray() throws AxisFault  {
+    public void testR2BaseEchoStructArray() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStructArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseStructArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -191,14 +190,14 @@
      * Group Base
      * operation echoVoid
      */
-    public void testR2BaseEchoVoid() throws AxisFault  {
+    public void testR2BaseEchoVoid() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoVoidClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseVoidRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -206,14 +205,14 @@
      * Group Base
      * operation echoBase64
      */
-    public void testR2BaseEchoBase64() throws AxisFault  {
+    public void testR2BaseEchoBase64() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBase64ClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseBase64Res.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -221,14 +220,14 @@
      * Group Base
      * operation echoBase64
      */
-    public void testR2BaseEchoDate() throws AxisFault  {
+    public void testR2BaseEchoDate() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDateClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseDateRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
 
@@ -237,14 +236,14 @@
      * Group Base
      * operation echoHexBinary
      */
-    public void testR2BaseEchoHexBinary() throws AxisFault  {
+    public void testR2BaseEchoHexBinary() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoHexBinaryClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseHexBinaryRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -252,14 +251,14 @@
      * Group Base
      * operation echoDecimal
      */
-    public void testR2BaseEchoDecimal() throws AxisFault  {
+    public void testR2BaseEchoDecimal() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDecimalClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseDecimalRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -267,14 +266,14 @@
      * Group Base
      * operation echoBoolean
      */
-    public void testR2BaseEchoBoolean() throws AxisFault  {
+    public void testR2BaseEchoBoolean() throws AxisFault {
         url = "http://www.cincomsmalltalk.com/soap/interop";
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBooleanClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunBaseBooleanRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -287,9 +286,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoStructAsSimpleTypesUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbStructAsSimpleTypesRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -302,9 +301,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoSimpleTypesAsStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbSimpletypesAsStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -317,9 +316,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEcho2DStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupb2DStringArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -332,9 +331,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbNestedStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -347,9 +346,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "sunGroupbNestedArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
 }

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WFRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WFRound2InteropTest.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WFRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WFRound2InteropTest.java Tue Jan 31 13:13:01 2006
@@ -19,6 +19,8 @@
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.soap.SOAPEnvelope;
 import test.interop.whitemesa.WhiteMesaIneterop;
+import test.interop.whitemesa.SunClientUtil;
+import test.interop.whitemesa.SunClient;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedStructUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoSimpleTypesAsStructUtil;
@@ -37,7 +39,6 @@
 import test.interop.whitemesa.round2.util.Round2EchoStructArrayClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoStructClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoVoidClientUtil;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
 
 import java.io.File;
 
@@ -47,6 +48,7 @@
  * WSDLs:-
  * "base"     http://www.wingfoot.com/interop/wingfootBase.wsdl
  * "Group B"  http://www.wingfoot.com/interop/wingfootGroupB.wsdl
+ * Todo - Endpoint is confusing.
  */
 public class WFRound2InteropTest extends WhiteMesaIneterop {
 
@@ -56,7 +58,8 @@
     String soapAction = "";
     String resFilePath = "interop/whitemesa/round2/";
     String tempPath = "";
-    SunRound2ClientUtil util;
+    SunClientUtil util;
+    SunClient client = new SunClient();
 
     /**
      * Round2
@@ -68,9 +71,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseStringRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -83,9 +86,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseStringArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -98,9 +101,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseIntegerRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -113,9 +116,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerArrayclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseIntegerArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -128,9 +131,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseFloatRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -143,9 +146,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseFloatArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -158,9 +161,9 @@
         soapAction = "";
 
         util = new Round2EchoStructClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -173,9 +176,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStructArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseStructArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -188,9 +191,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoVoidClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseVoidRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -203,9 +206,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBase64ClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseBase64Res.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -218,9 +221,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDateClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseDateRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
 
@@ -234,9 +237,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoHexBinaryClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseHexBinaryRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -249,9 +252,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDecimalClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseDecimalRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -264,9 +267,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBooleanClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFBaseBooleanRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -279,9 +282,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoStructAsSimpleTypesUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFGroupbStructAsSimpleTypesRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -294,9 +297,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoSimpleTypesAsStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFGroupbSimpletypesAsStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -309,9 +312,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFGroupbNestedStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -324,9 +327,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WFGroupbNestedArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
 }

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java Tue Jan 31 13:13:01 2006
@@ -20,6 +20,8 @@
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.soap.SOAPEnvelope;
 import test.interop.whitemesa.WhiteMesaIneterop;
+import test.interop.whitemesa.SunClientUtil;
+import test.interop.whitemesa.SunClient;
 import test.interop.whitemesa.round2.util.GroupbEcho2DStringArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedArrayUtil;
 import test.interop.whitemesa.round2.util.GroupbEchoNestedStructUtil;
@@ -51,7 +53,6 @@
 import test.interop.whitemesa.round2.util.Round2EchoStructArrayClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoStructClientUtil;
 import test.interop.whitemesa.round2.util.Round2EchoVoidClientUtil;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
 
 import java.io.File;
 
@@ -72,7 +73,8 @@
     String soapAction = "";
     String resFilePath = "interop/whitemesa/round2/";
     String tempPath = "";
-    SunRound2ClientUtil util;
+    SunClientUtil util;
+    SunClient client = new SunClient();
 
     /**
      * Round2
@@ -84,9 +86,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseStringRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -99,9 +101,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStringArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseStringArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -114,9 +116,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseIntegerRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -129,9 +131,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoIntegerArrayclientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseIntegerArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -144,9 +146,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseFloatRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -159,9 +161,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoFloatArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseFloatArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -174,9 +176,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStructClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -189,9 +191,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoStructArrayClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseStructArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -204,9 +206,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoVoidClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseVoidRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -219,9 +221,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBase64ClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseBase64Res.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -234,9 +236,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDateClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseDateRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -249,9 +251,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoDecimalClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseDecimalRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -264,9 +266,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoHexBinaryClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseHexBinaryRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -279,9 +281,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new Round2EchoBooleanClientUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMBaseBooleanRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -294,9 +296,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoStructAsSimpleTypesUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGroupbStructAsSimpleTypesRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -309,9 +311,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoSimpleTypesAsStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGroupbSimpletypesAsStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -324,9 +326,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEcho2DStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGroupb2DStringArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -339,9 +341,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGroupbNestedStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -354,9 +356,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupbEchoNestedArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGroupbNestedArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -369,9 +371,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcEchoStringUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcEchoStringRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -384,9 +386,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcIntergerUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcIntergerRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -399,9 +401,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStringArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcStringArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -414,9 +416,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcIntegerArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcIntegerArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -429,9 +431,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcFloatUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcFloatRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -444,9 +446,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcFloatArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcFloatArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -459,9 +461,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStructUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcStructRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -474,9 +476,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcStructArrayUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcStructArrayRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -489,9 +491,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcVoidUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcVoidRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -504,9 +506,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcBase64Util();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcBase64Res.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -519,9 +521,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcHexBinaryUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcHexBinaryRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
     /**
@@ -534,9 +536,9 @@
         soapAction = "http://soapinterop.org/";
 
         util = new GroupcBooleanUtil();
-        retEnv = SunRound2Client.sendMsg(util, url, soapAction);
+        retEnv = client.sendMsg(util, url, soapAction);
         tempPath = resFilePath + "WMGcBooleanRes.xml";
-        compare(retEnv, tempPath);
+        compareXML(retEnv, tempPath);
     }
 
 }