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 [9/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/src/test/interop/whitemesa/round2/util/Round2EchoDecimalClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoDecimalClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoDecimalClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoDecimalClientUtil.java Tue Jan 31 13:13:01 2006
@@ -16,13 +16,15 @@
 
 
 package test.interop.whitemesa.round2.util;
+
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class Round2EchoDecimalClientUtil implements SunRound2ClientUtil {
+public class Round2EchoDecimalClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -33,7 +35,7 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoDecimal", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
@@ -44,7 +46,6 @@
         part.addChild(omfactory.createText("455646152"));
 
         operation.addChild(part);
-        //reqEnv.getBody().addChild(method);
         return reqEnv;
 
     }

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatArrayClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatArrayClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatArrayClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatArrayClientUtil.java Tue Jan 31 13:13:01 2006
@@ -18,10 +18,12 @@
 package test.interop.whitemesa.round2.util;
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2EchoFloatArrayClientUtil implements SunRound2ClientUtil {
+public class Round2EchoFloatArrayClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -29,27 +31,30 @@
         SOAPEnvelope reqEnv = omfactory.getDefaultEnvelope();
 
         reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
-        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        OMNamespace typeNs = reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        OMNamespace encNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
+        
 
         OMElement operation = omfactory.createOMElement("echoFloatArray", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
         operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
 
-        OMElement part = omfactory.createOMElement("inputFloatArray", "", null);
-        part.addAttribute("xsi:type", "xsd:int", null);
-        part.addAttribute("xsi:type", "SOAP-ENC:Array", null);
-        part.addAttribute("SOAP-ENC:arrayType", "xsd:float[3]", null);
+        OMElement part = omfactory.createOMElement("inputFloatArray", null);
+        part.declareNamespace(typeNs);
+        part.declareNamespace(encNs);
+        part.addAttribute("type", "xsd:int", typeNs);
+        part.addAttribute("type", "SOAP-ENC:Array", typeNs);
+        part.addAttribute("arrayType", "xsd:float[3]", encNs);
 
-        OMElement value0 = omfactory.createOMElement("varString", "", null);
+        OMElement value0 = omfactory.createOMElement("varString", null);
         value0.addAttribute("xsi:type", "xsd:float", null);
         value0.addChild(omfactory.createText("45.76876"));
-        OMElement value1 = omfactory.createOMElement("varInt", "", null);
+        OMElement value1 = omfactory.createOMElement("varInt", null);
         value1.addAttribute("xsi:type", "xsd:float", null);
         value1.addChild(omfactory.createText("43.454"));
-        OMElement value2 = omfactory.createOMElement("varFloat", "", null);
+        OMElement value2 = omfactory.createOMElement("varFloat", null);
         value2.addAttribute("xsi:type", "xsd:float", null);
         value2.addChild(omfactory.createText("2523.542"));
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoFloatClientUtil.java Tue Jan 31 13:13:01 2006
@@ -16,13 +16,16 @@
 
 
 package test.interop.whitemesa.round2.util;
+
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class Round2EchoFloatClientUtil implements SunRound2ClientUtil {
+public class Round2EchoFloatClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -33,18 +36,19 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
+        OMNamespace envNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
 
         OMElement operation = omfactory.createOMElement("echoFloat", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
-        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+        operation.declareNamespace(envNs);
+        operation.addAttribute("encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", envNs);
 
         OMElement part = omfactory.createOMElement("inputFloat", "", null);
         part.addAttribute("xsi:type", "xsd:float", null);
         part.addChild(omfactory.createText("50.25"));
 
         operation.addChild(part);
-        //reqEnv.getBody().addChild(method);
         return reqEnv;
 
     }

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoHexBinaryClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoHexBinaryClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoHexBinaryClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoHexBinaryClientUtil.java Tue Jan 31 13:13:01 2006
@@ -16,13 +16,15 @@
 
 
 package test.interop.whitemesa.round2.util;
+
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class Round2EchoHexBinaryClientUtil implements SunRound2ClientUtil {
+public class Round2EchoHexBinaryClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -33,8 +35,8 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
-        reqEnv.declareNamespace("http://microsoft.com/wsdl/mime/textMatching/","tm");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
+        reqEnv.declareNamespace("http://microsoft.com/wsdl/mime/textMatching/", "tm");
 
         OMElement operation = omfactory.createOMElement("echoHexBinary", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
@@ -45,7 +47,7 @@
         part.addChild(omfactory.createText("AAABBAAE"));
 
         operation.addChild(part);
-        //reqEnv.getBody().addChild(method);
         return reqEnv;
 
-    }}
+    }
+}

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerArrayclientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerArrayclientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerArrayclientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerArrayclientUtil.java Tue Jan 31 13:13:01 2006
@@ -15,38 +15,48 @@
  */
 
 package test.interop.whitemesa.round2.util;
+
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2EchoIntegerArrayclientUtil implements SunRound2ClientUtil{
+public class Round2EchoIntegerArrayclientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
-            SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
-            SOAPEnvelope reqEnv = omfactory.getDefaultEnvelope();
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.getDefaultEnvelope();
 
-            reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
-            reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
-            reqEnv.declareNamespace("http://soapinterop.org/", "tns");
-            reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-            reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
+        reqEnv.declareNamespace("http://soapinterop.org/", "tns");
+        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
+        OMNamespace typeNs = reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
+        OMNamespace envNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        OMNamespace encNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
 
         OMElement operation = omfactory.createOMElement("echoIntegerArray", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
-        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
-        OMElement part = omfactory.createOMElement("inputIntegerArray", "", null);
-        part.addAttribute("xsi:type","SOAP-ENC:Array",null);
-        part.addAttribute("SOAP-ENC:arrayType","xsd:int[3]",null);
-        OMElement value0 = omfactory.createOMElement("varString", "", null);
-        value0.addAttribute("xsi:type", "xsd:int", null);
+        operation.declareNamespace(envNs);
+        operation.addAttribute("encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", envNs);
+        OMElement part = omfactory.createOMElement("inputIntegerArray", null);
+        part.declareNamespace(typeNs);
+        part.declareNamespace(encNs);
+        part.addAttribute("type", "SOAP-ENC:Array", typeNs);
+        part.addAttribute("arrayType", "xsd:int[3]", encNs);
+        OMElement value0 = omfactory.createOMElement("varString", null);
+        value0.declareNamespace(typeNs);
+        value0.addAttribute("type", "xsd:int", typeNs);
         value0.addChild(omfactory.createText("451"));
-        OMElement value1 = omfactory.createOMElement("varString", "", null);
-        value1.addAttribute("xsi:type", "xsd:int", null);
+        OMElement value1 = omfactory.createOMElement("varString", null);
+        value1.declareNamespace(typeNs);
+        value1.addAttribute("type", "xsd:int", typeNs);
         value1.addChild(omfactory.createText("425"));
-        OMElement value2 = omfactory.createOMElement("varString", "", null);
-        value2.addAttribute("xsi:type", "xsd:int", null);
+        OMElement value2 = omfactory.createOMElement("varString", null);
+        value2.declareNamespace(typeNs);
+        value2.addAttribute("type", "xsd:int", typeNs);
         value2.addChild(omfactory.createText("2523"));
 
         part.addChild(value0);
@@ -55,7 +65,6 @@
 
         operation.addChild(part);
 
-        //reqEnv.getBody().addChild(method);
         return reqEnv;
     }
 }

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoIntegerClientUtil.java Tue Jan 31 13:13:01 2006
@@ -15,12 +15,14 @@
  */
 
 package test.interop.whitemesa.round2.util;
+
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2EchoIntegerClientUtil implements SunRound2ClientUtil {
+public class Round2EchoIntegerClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -29,7 +31,7 @@
         reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoInteger", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringArrayClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringArrayClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringArrayClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringArrayClientUtil.java Tue Jan 31 13:13:01 2006
@@ -18,10 +18,12 @@
 
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2EchoStringArrayClientUtil implements SunRound2ClientUtil {
+public class Round2EchoStringArrayClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -29,33 +31,41 @@
         SOAPEnvelope reqEnv = omfactory.getDefaultEnvelope();
 
         reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
-        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        OMNamespace encNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
+        OMNamespace envNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        OMNamespace typeNs = reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoStringArray", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
-        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+        operation.declareNamespace(envNs);
+        operation.addAttribute("encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", envNs);
 
-        OMElement part = omfactory.createOMElement("inputStringArray", "", null);
+        OMElement part = omfactory.createOMElement("inputStringArray", null);
+       // part.declareNamespace(typeNs);
+        part.declareNamespace(encNs);
         part.addAttribute("xsi:type", "SOAP-ENC:Array", null);
-        part.addAttribute("SOAP-ENC:arrayType", "xsd:string[3]", null);
+        part.addAttribute("arrayType", "xsd:string[3]", encNs);
 
-        OMElement value0 = omfactory.createOMElement("varString", "", null);
+        OMElement value0 = omfactory.createOMElement("varString", null);
+        value0.declareNamespace(typeNs);
         value0.addAttribute("xsi:type", "xsd:string", null);
-        value0.addChild(omfactory.createText("Apache Axis2"));
-        OMElement value1 = omfactory.createOMElement("varString", "", null);
+        value0.addChild(omfactory.createText("String Value1"));
+        OMElement value1 = omfactory.createOMElement("varString", null);
+        value1.declareNamespace(typeNs);
         value1.addAttribute("xsi:type", "xsd:string", null);
-        value1.addChild(omfactory.createText("Lanka Software Foundation"));
-        OMElement value2 = omfactory.createOMElement("varString", "", null);
+        value1.addChild(omfactory.createText("String Value2"));
+        OMElement value2 = omfactory.createOMElement("varString", null);
+        value2.declareNamespace(typeNs);
         value2.addAttribute("xsi:type", "xsd:string", null);
-        value2.addChild(omfactory.createText("www.opensource.lk"));
+        value2.addChild(omfactory.createText("String Value3"));
 
         part.addChild(value0);
         part.addChild(value1);
         part.addChild(value2);
 
         operation.addChild(part);
+        
         return reqEnv;
     }
 }

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringclientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringclientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringclientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStringclientUtil.java Tue Jan 31 13:13:01 2006
@@ -18,29 +18,34 @@
 
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class Round2EchoStringclientUtil implements SunRound2ClientUtil {
+public class Round2EchoStringclientUtil implements SunClientUtil {
 
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
         SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
         SOAPEnvelope reqEnv = omfactory.getDefaultEnvelope();
-        
+
         reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        OMNamespace envNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        OMNamespace typeNs = reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
-        OMElement operation = omfactory.createOMElement("Server.echoString", "http://soapinterop.org/", null);
+        OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
-        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+        operation.declareNamespace(envNs);
+        operation.addAttribute("encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", envNs);
 
-        OMElement part = omfactory.createOMElement("inputString", "", null);
-        part.addAttribute("xsi:type", "xsd:string", null);
+        OMElement part = omfactory.createOMElement("inputString", null);
+        part.declareNamespace(typeNs);
+        part.addAttribute("type", "xsd:string", typeNs);
         part.addChild(omfactory.createText("String Argument"));
 
         operation.addChild(part);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java Tue Jan 31 13:13:01 2006
@@ -17,10 +17,12 @@
 package test.interop.whitemesa.round2.util;
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2EchoStructArrayClientUtil implements SunRound2ClientUtil {
+public class Round2EchoStructArrayClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -28,52 +30,53 @@
         SOAPEnvelope reqEnv = omfactory.getDefaultEnvelope();
 
         reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
-        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
         reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        OMNamespace encNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
 
         OMElement operation = omfactory.createOMElement("echoStructArray", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
         operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
 
-        OMElement part = omfactory.createOMElement("inputStructArray", "", null);
+        OMElement part = omfactory.createOMElement("inputStructArray", null);
         part.addAttribute("xsi:type", "SOAP-ENC:Array", null);
-        part.addAttribute("SOAP-ENC:arrayType", "s:SOAPStruct[3]", null);
+        part.declareNamespace(encNs);
+        part.addAttribute("arrayType", "s:SOAPStruct[3]", encNs);
 
         OMElement item0 = omfactory.createOMElement("item0", null);
 
-        OMElement value00 = omfactory.createOMElement("varString", "", null);
+        OMElement value00 = omfactory.createOMElement("varString", null);
         value00.addAttribute("xsi:type", "xsd:string", null);
         value00.addChild(omfactory.createText("strss fdfing1"));
-        OMElement value01 = omfactory.createOMElement("varInt", "", null);
+        OMElement value01 = omfactory.createOMElement("varInt", null);
         value01.addAttribute("xsi:type", "xsd:int", null);
         value01.addChild(omfactory.createText("25"));
-        OMElement value02 = omfactory.createOMElement("varFloat", "", null);
+        OMElement value02 = omfactory.createOMElement("varFloat", null);
         value02.addAttribute("xsi:type", "xsd:float", null);
         value02.addChild(omfactory.createText("25.23"));
 
         OMElement item1 = omfactory.createOMElement("item0", null);
 
-        OMElement value10 = omfactory.createOMElement("varString", "", null);
+        OMElement value10 = omfactory.createOMElement("varString", null);
         value10.addAttribute("xsi:type", "xsd:string", null);
         value10.addChild(omfactory.createText("strss fdfing1"));
-        OMElement value11 = omfactory.createOMElement("varInt", "", null);
+        OMElement value11 = omfactory.createOMElement("varInt", null);
         value11.addAttribute("xsi:type", "xsd:int", null);
         value11.addChild(omfactory.createText("25"));
-        OMElement value12 = omfactory.createOMElement("varFloat", "", null);
+        OMElement value12 = omfactory.createOMElement("varFloat", null);
         value12.addAttribute("xsi:type", "xsd:float", null);
         value12.addChild(omfactory.createText("25.23"));
 
         OMElement item2 = omfactory.createOMElement("item0", null);
 
-        OMElement value20 = omfactory.createOMElement("varString", "", null);
+        OMElement value20 = omfactory.createOMElement("varString", null);
         value20.addAttribute("xsi:type", "xsd:string", null);
         value20.addChild(omfactory.createText("strss fdfing1"));
-        OMElement value21 = omfactory.createOMElement("varInt", "", null);
+        OMElement value21 = omfactory.createOMElement("varInt", null);
         value21.addAttribute("xsi:type", "xsd:int", null);
         value21.addChild(omfactory.createText("25"));
-        OMElement value22 = omfactory.createOMElement("varFloat", "", null);
+        OMElement value22 = omfactory.createOMElement("varFloat", null);
         value22.addAttribute("xsi:type", "xsd:float", null);
         value22.addChild(omfactory.createText("25.23"));
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoStructClientUtil.java Tue Jan 31 13:13:01 2006
@@ -15,13 +15,15 @@
  */
 
 package test.interop.whitemesa.round2.util;
+
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class Round2EchoStructClientUtil implements SunRound2ClientUtil {
+public class Round2EchoStructClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -32,7 +34,7 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoStruct", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoVoidClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoVoidClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoVoidClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/Round2EchoVoidClientUtil.java Tue Jan 31 13:13:01 2006
@@ -15,12 +15,15 @@
  */
 
 package test.interop.whitemesa.round2.util;
+
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMElement;
+import org.apache.axis2.om.OMNamespace;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2EchoVoidClientUtil implements SunRound2ClientUtil {
+public class Round2EchoVoidClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -31,13 +34,16 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
+        OMNamespace envNs = reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
 
         OMElement operation = omfactory.createOMElement("echoVoid", "http://soapinterop.org/", null);
         reqEnv.getBody().addChild(operation);
-        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+        operation.declareNamespace(envNs);
+        operation.addAttribute("encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", envNs);
 
         return reqEnv;
+
 
     }
 }

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/SunRound2ClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/SunRound2ClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/SunRound2ClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/SunRound2ClientUtil.java Tue Jan 31 13:13:01 2006
@@ -1,23 +0,0 @@
-/*
- * Copyright 2004,2005 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package test.interop.whitemesa.round2.util;
-
-import org.apache.axis2.soap.SOAPEnvelope;
-
-public interface SunRound2ClientUtil {
-    SOAPEnvelope getEchoSoapEnvelope();
-}

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12Echo2DStringArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12Echo2DStringArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12Echo2DStringArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12Echo2DStringArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GroupbSoap12Echo2DStringArrayUtil implements SunRound2ClientUtil {
+public class GroupbSoap12Echo2DStringArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GroupbSoap12EchoNestedArrayUtil implements SunRound2ClientUtil {
+public class GroupbSoap12EchoNestedArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedStructUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedStructUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedStructUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoNestedStructUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GroupbSoap12EchoNestedStructUtil implements SunRound2ClientUtil {
+public class GroupbSoap12EchoNestedStructUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoSimpleTypesAsStructUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoSimpleTypesAsStructUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoSimpleTypesAsStructUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoSimpleTypesAsStructUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GroupbSoap12EchoSimpleTypesAsStructUtil implements SunRound2ClientUtil {
+public class GroupbSoap12EchoSimpleTypesAsStructUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoStructAsSimpleTypesUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoStructAsSimpleTypesUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoStructAsSimpleTypesUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupbSoap12EchoStructAsSimpleTypesUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GroupbSoap12EchoStructAsSimpleTypesUtil implements SunRound2ClientUtil {
+public class GroupbSoap12EchoStructAsSimpleTypesUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12EchoStringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12EchoStringUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12EchoStringUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12EchoStringUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GroupcSoap12EchoStringUtil implements SunRound2ClientUtil {
+public class GroupcSoap12EchoStringUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12VoidUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12VoidUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12VoidUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/GroupcSoap12VoidUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GroupcSoap12VoidUtil implements SunRound2ClientUtil {
+public class GroupcSoap12VoidUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2SOAP12EchoIntegerArrayclientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2SOAP12EchoIntegerArrayclientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2SOAP12EchoIntegerArrayclientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2SOAP12EchoIntegerArrayclientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2SOAP12EchoIntegerArrayclientUtil implements SunRound2ClientUtil {
+public class Round2SOAP12EchoIntegerArrayclientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBase64ClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBase64ClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBase64ClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBase64ClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoBase64ClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoBase64ClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBooleanClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBooleanClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBooleanClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoBooleanClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoBooleanClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoBooleanClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDateClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDateClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDateClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDateClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoDateClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoDateClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDecimalClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDecimalClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDecimalClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoDecimalClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoDecimalClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoDecimalClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatArrayClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatArrayClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatArrayClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatArrayClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoFloatArrayClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoFloatArrayClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoFloatClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoFloatClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoFloatClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoHexBinaryUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoHexBinaryUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoHexBinaryUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoHexBinaryUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoHexBinaryUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoHexBinaryUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructArrayClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructArrayClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructArrayClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructArrayClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoStructArrayClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoStructArrayClientUtil implements SunClientUtil {
     public SOAPEnvelope getEchoSoapEnvelope() {
 
         SOAPFactory omfactory = OMAbstractFactory.getSOAP12Factory();

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoStructClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoStructClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoStructClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoVoidClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoVoidClientUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoVoidClientUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12EchoVoidClientUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12EchoVoidClientUtil implements SunRound2ClientUtil {
+public class Round2Soap12EchoVoidClientUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12IntegerUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12IntegerUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12IntegerUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12IntegerUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12IntegerUtil implements SunRound2ClientUtil {
+public class Round2Soap12IntegerUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12StringArrayUtil implements SunRound2ClientUtil {
+public class Round2Soap12StringArrayUtil implements SunClientUtil {
     public SOAPEnvelope getEchoSoapEnvelope() {
 
         SOAPFactory omfactory = OMAbstractFactory.getSOAP12Factory();

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/Round2Soap12StringUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class Round2Soap12StringUtil implements SunRound2ClientUtil {
+public class Round2Soap12StringUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Saop12GroupcFloatUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Saop12GroupcFloatUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Saop12GroupcFloatUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Saop12GroupcFloatUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Saop12GroupcFloatUtil implements SunRound2ClientUtil {
+public class WMRound2Saop12GroupcFloatUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBase64Util.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBase64Util.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBase64Util.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBase64Util.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcBase64Util implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcBase64Util implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBooleanUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBooleanUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBooleanUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcBooleanUtil.java Tue Jan 31 13:13:01 2006
@@ -22,9 +22,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcBooleanUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcBooleanUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcEchoStringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcEchoStringUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcEchoStringUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcEchoStringUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcEchoStringUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcEchoStringUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcFloatArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcFloatArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcFloatArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcFloatArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcFloatArrayUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcFloatArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcHexBinaryUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcHexBinaryUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcHexBinaryUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcHexBinaryUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcHexBinaryUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcHexBinaryUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntegerArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntegerArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntegerArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntegerArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcIntegerArrayUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcIntegerArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntergerUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntergerUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntergerUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcIntergerUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcIntergerUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcIntergerUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStringArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStringArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStringArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStringArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcStringArrayUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcStringArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcStructArrayUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcStructArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcStructUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcStructUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcStructUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcVoidUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcVoidUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcVoidUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round2/util/soap12/WMRound2Soap12GroupcVoidUtil.java Tue Jan 31 13:13:01 2006
@@ -23,9 +23,9 @@
 import org.apache.axis2.soap.SOAPFactory;
 import org.apache.axis2.soap.SOAPHeader;
 import org.apache.axis2.soap.SOAPHeaderBlock;
-import test.interop.whitemesa.round2.util.SunRound2ClientUtil;
+import test.interop.whitemesa.SunClientUtil;
 
-public class WMRound2Soap12GroupcVoidUtil implements SunRound2ClientUtil {
+public class WMRound2Soap12GroupcVoidUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/SunRound3Client.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/SunRound3Client.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/SunRound3Client.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/SunRound3Client.java Tue Jan 31 13:13:01 2006
@@ -1,73 +0,0 @@
-/*
- * Copyright 2004,2005 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package test.interop.whitemesa.round3;
-
-import org.apache.axis2.AxisFault;
-import org.apache.axis2.Constants;
-import org.apache.axis2.addressing.EndpointReference;
-import org.apache.axis2.client.OperationClient;
-import org.apache.axis2.client.Options;
-import org.apache.axis2.client.ServiceClient;
-import org.apache.axis2.context.MessageContext;
-import org.apache.axis2.context.MessageContextConstants;
-import org.apache.axis2.context.ConfigurationContextFactory;
-import org.apache.axis2.context.ConfigurationContext;
-import org.apache.axis2.soap.SOAPEnvelope;
-import org.apache.wsdl.WSDLConstants;
-import test.interop.whitemesa.round3.util.SunRound3ClientUtil;
-
-import java.net.URL;
-
-public class SunRound3Client {
-
-    public SOAPEnvelope sendMsg(SunRound3ClientUtil util, String epUrl, String soapAction) throws AxisFault {
-
-        SOAPEnvelope resEnv;
-        URL url;
-        try {
-            url = new URL(epUrl);
-
-            Options options = new Options();
-            options.setProperty(MessageContextConstants.CHUNKED, Constants.VALUE_FALSE);
-            options.setTo(new EndpointReference(url.toString()));
-            options.setTransportInProtocol(Constants.TRANSPORT_HTTP);
-            options.setSoapAction(soapAction);
-
-            MessageContext messageContext = new MessageContext();
-            SOAPEnvelope requestEnvilope = util.getEchoSoapEnvelope();
-            messageContext.setEnvelope(requestEnvilope);
-
-            ConfigurationContextFactory factory = new ConfigurationContextFactory();
-            ConfigurationContext configContext =
-                    ConfigurationContextFactory.createConfigurationContextFromFileSystem(
-                            "target/test-resources/integrationRepo",null);
-            ServiceClient serviceClient = new ServiceClient(configContext, null);
-            serviceClient.setOptions(options);
-
-            OperationClient opClient = serviceClient.createClient(ServiceClient.ANON_OUT_IN_OP);
-            opClient.addMessageContext(messageContext);
-            opClient.execute(true);
-            MessageContext responseMCtx = opClient.getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE);
-
-            resEnv = responseMCtx.getEnvelope();
-
-        } catch (Exception e) {
-            throw new AxisFault(e);
-        }
-        return resEnv;
-    }
-}

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport1EchoStringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport1EchoStringUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport1EchoStringUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport1EchoStringUtil.java Tue Jan 31 13:13:01 2006
@@ -20,8 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GDImport1EchoStringUtil implements SunRound3ClientUtil{
+public class GDImport1EchoStringUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -33,7 +34,7 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop/echoString/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop/echoString/", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport2EchoStructUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport2EchoStructUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport2EchoStructUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport2EchoStructUtil.java Tue Jan 31 13:13:01 2006
@@ -20,8 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GDImport2EchoStructUtil implements SunRound3ClientUtil{
+public class GDImport2EchoStructUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -32,8 +33,8 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/main/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://soapinterop/","ns1");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://soapinterop/", "ns1");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoStruct", "http://soapinterop/", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport3StructArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport3StructArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport3StructArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDImport3StructArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,10 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class GDImport3StructArrayUtil implements SunRound3ClientUtil{
+public class GDImport3StructArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -34,7 +35,7 @@
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
         reqEnv.declareNamespace("http://soapinterop/", "ns1");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoStructArray", "http://soapinterop/", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringArrayUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringArrayUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringArrayUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,10 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class GDRpcStringArrayUtil implements SunRound3ClientUtil{
+public class GDRpcStringArrayUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -34,7 +35,7 @@
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
         reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "tns");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoStringArray", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStringUtil.java Tue Jan 31 13:13:01 2006
@@ -20,9 +20,10 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
 
-public class GDRpcStringUtil implements SunRound3ClientUtil {
+public class GDRpcStringUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -34,7 +35,7 @@
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
         reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "tns");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStructUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStructUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStructUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcStructUtil.java Tue Jan 31 13:13:01 2006
@@ -20,8 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GDRpcStructUtil implements SunRound3ClientUtil{
+public class GDRpcStructUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -32,8 +33,8 @@
         reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
         reqEnv.declareNamespace("http://soapinterop.org/main/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
-        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc","ns1");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "ns1");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoStruct", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
         reqEnv.getBody().addChild(operation);

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcVoidUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcVoidUtil.java?rev=373912&r1=373911&r2=373912&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcVoidUtil.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/whitemesa/round3/util/GDRpcVoidUtil.java Tue Jan 31 13:13:01 2006
@@ -20,8 +20,9 @@
 import org.apache.axis2.om.OMElement;
 import org.apache.axis2.soap.SOAPEnvelope;
 import org.apache.axis2.soap.SOAPFactory;
+import test.interop.whitemesa.SunClientUtil;
 
-public class GDRpcVoidUtil implements SunRound3ClientUtil{
+public class GDRpcVoidUtil implements SunClientUtil {
 
     public SOAPEnvelope getEchoSoapEnvelope() {
 
@@ -33,7 +34,7 @@
         reqEnv.declareNamespace("http://soapinterop.org/", "tns");
         reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
         reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "tns");
-        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance", "xsi");
 
         OMElement operation = omfactory.createOMElement("echoVoid", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
         reqEnv.getBody().addChild(operation);