You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2005/09/06 09:33:44 UTC

svn commit: r278936 [16/16] - in /webservices/axis2/trunk/java/modules/integration: itest-resources/interopt/whitemesa/round2/ itest-resources/interopt/whitemesa/round3/ itest/org/apache/axis2/interopt/whitmesa/round1/ itest/org/apache/axis2/interopt/w...

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructArrayClientUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,115 @@
+package org.apache.axis2.interopt.whitemesa.round2.util;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class Round2EchoStructArrayClientUtil implements SunRound2ClientUtil {
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        //reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoStructArray", "http://soapinterop.org/", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("inputStructArray", "", null);
+        part.addAttribute("xsi:type", "SOAP-ENC:Array", null);
+        part.addAttribute("SOAP-ENC:arrayType", "s:SOAPStruct[3]", null);
+
+        OMElement item0 = omfactory.createOMElement("item0", 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);
+        value01.addAttribute("xsi:type", "xsd:int", null);
+        value01.addChild(omfactory.createText("25"));
+        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);
+        value10.addAttribute("xsi:type", "xsd:string", null);
+        value10.addChild(omfactory.createText("strss fdfing1"));
+        OMElement value11 = omfactory.createOMElement("varInt", "", null);
+        value11.addAttribute("xsi:type", "xsd:int", null);
+        value11.addChild(omfactory.createText("25"));
+        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);
+        value20.addAttribute("xsi:type", "xsd:string", null);
+        value20.addChild(omfactory.createText("strss fdfing1"));
+        OMElement value21 = omfactory.createOMElement("varInt", "", null);
+        value21.addAttribute("xsi:type", "xsd:int", null);
+        value21.addChild(omfactory.createText("25"));
+        OMElement value22 = omfactory.createOMElement("varFloat", "", null);
+        value22.addAttribute("xsi:type", "xsd:float", null);
+        value22.addChild(omfactory.createText("25.23"));
+
+        item0.addChild(value00);
+        item0.addChild(value01);
+        item0.addChild(value02);
+
+        item1.addChild(value10);
+        item1.addChild(value11);
+        item1.addChild(value12);
+
+        item2.addChild(value20);
+        item2.addChild(value21);
+        item2.addChild(value22);
+
+        part.addChild(item0);
+        part.addChild(item1);
+        part.addChild(item2);
+
+        operation.addChild(part);
+
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructClientUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructClientUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoStructClientUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,75 @@
+package org.apache.axis2.interopt.whitemesa.round2.util;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class Round2EchoStructClientUtil implements SunRound2ClientUtil {
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoStruct", "http://soapinterop.org/", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+        OMElement part = omfactory.createOMElement("inputStruct", "", null);
+        part.addAttribute("xsi:type", "s:SOAPStruct", null);
+
+        OMElement value0 = omfactory.createOMElement("varString", "", null);
+        value0.addAttribute("xsi:type", "xsd:string", null);
+        value0.addChild(omfactory.createText("strss fdfing1"));
+        OMElement value1 = omfactory.createOMElement("varInt", "", null);
+        value1.addAttribute("xsi:type", "xsd:int", null);
+        value1.addChild(omfactory.createText("25"));
+        OMElement value2 = omfactory.createOMElement("varFloat", "", null);
+        value2.addAttribute("xsi:type", "xsd:float", null);
+        value2.addChild(omfactory.createText("25.23"));
+
+        part.addChild(value0);
+        part.addChild(value1);
+        part.addChild(value2);
+
+        operation.addChild(part);
+
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+    }
+}    

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoVoidClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoVoidClientUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoVoidClientUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/Round2EchoVoidClientUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,56 @@
+package org.apache.axis2.interopt.whitemesa.round2.util;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class Round2EchoVoidClientUtil implements SunRound2ClientUtil {
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoVoid", "http://soapinterop.org/", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        return reqEnv;
+
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/SunRound2ClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/SunRound2ClientUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/SunRound2ClientUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round2/util/SunRound2ClientUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,31 @@
+package org.apache.axis2.interopt.whitemesa.round2.util;
+
+import org.apache.axis2.soap.SOAPEnvelope;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public interface SunRound2ClientUtil {
+    SOAPEnvelope getEchoSoapEnvelope();
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/SunRound3Client.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/SunRound3Client.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/SunRound3Client.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/SunRound3Client.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,72 @@
+package org.apache.axis2.interopt.whitemesa.round3;
+
+import org.apache.axis2.AxisFault;
+import org.apache.axis2.Constants;
+import org.apache.axis2.interopt.whitemesa.round3.util.SunRound3ClientUtil;
+import org.apache.axis2.addressing.EndpointReference;
+import org.apache.axis2.clientapi.Call;
+import org.apache.axis2.context.ConfigurationContext;
+import org.apache.axis2.context.MessageContext;
+import org.apache.axis2.description.OperationDescription;
+import org.apache.axis2.engine.AxisConfiguration;
+import org.apache.axis2.engine.AxisConfigurationImpl;
+import org.apache.axis2.soap.SOAPEnvelope;
+
+import javax.xml.namespace.QName;
+import java.net.URL;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class SunRound3Client {
+
+    public SOAPEnvelope sendMsg(SunRound3ClientUtil util, String epUrl, String soapAction) throws AxisFault {
+
+        SOAPEnvelope retEnvelope= null;
+        Call call = null;
+        URL url = null;
+        try {
+            call = new Call("target/test-resources/intregrationRepo");
+            //todo set the path to repository in Call()
+            url = new URL(epUrl);
+            call.setTo(new EndpointReference(url.toString()));
+            call.setTransportInfo(Constants.TRANSPORT_HTTP, Constants.TRANSPORT_HTTP, false);
+            call.setSoapAction(soapAction);
+
+            AxisConfiguration axisConfig = new AxisConfigurationImpl();
+            ConfigurationContext configCtx = new ConfigurationContext(axisConfig);
+            MessageContext msgCtx = new MessageContext(configCtx);
+
+            OperationDescription opDesc = new OperationDescription(new QName(""));
+            SOAPEnvelope requestEnvilope = util.getEchoSoapEnvelope();
+            msgCtx.setEnvelope(requestEnvilope);
+            MessageContext resMsgCtx = call.invokeBlocking(opDesc, msgCtx);
+            retEnvelope = resMsgCtx.getEnvelope();
+
+        } catch (Exception e) {
+            throw new AxisFault(e);
+        }
+        return retEnvelope;
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport1EchoStringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport1EchoStringUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport1EchoStringUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport1EchoStringUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,63 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GDImport1EchoStringUtil implements SunRound3ClientUtil{
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop/echoString/", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("x", "", null);
+        part.addAttribute("xsi:type", "xsd:string", null);
+        part.addChild(omfactory.createText("strss fdfing1"));
+
+        operation.addChild(part);
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport2EchoStructUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport2EchoStructUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport2EchoStructUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport2EchoStructUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,74 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GDImport2EchoStructUtil implements SunRound3ClientUtil{
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://soapinterop/","ns1");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoStruct", "http://soapinterop/", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("inputStruct", "", null);
+        part.addAttribute("xsi:type", "s:SOAPStruct", null);
+
+        OMElement value0 = omfactory.createOMElement("varString", "", null);
+        value0.addAttribute("xsi:type", "xsd:string", null);
+        value0.addChild(omfactory.createText("strss fdfing1"));
+        OMElement value1 = omfactory.createOMElement("varInt", "", null);
+        value1.addAttribute("xsi:type", "xsd:int", null);
+        value1.addChild(omfactory.createText("25"));
+        OMElement value2 = omfactory.createOMElement("varFloat", "", null);
+        value2.addAttribute("xsi:type", "xsd:float", null);
+        value2.addChild(omfactory.createText("25.23"));
+        part.addChild(value0);
+        part.addChild(value1);
+        part.addChild(value2);
+        operation.addChild(part);
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport3StructArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport3StructArrayUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport3StructArrayUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDImport3StructArrayUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,118 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GDImport3StructArrayUtil implements SunRound3ClientUtil{
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://soapinterop/", "ns1");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoStructArray", "http://soapinterop/", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("inputArray", "", null);
+        part.addAttribute("xsi:type", "SOAP-ENC:Array", null);
+        part.addAttribute("SOAP-ENC:arrayType", "s:SOAPStruct[3]", null);
+
+        OMElement item0 = omfactory.createOMElement("item0", 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);
+        value01.addAttribute("xsi:type", "xsd:int", null);
+        value01.addChild(omfactory.createText("25"));
+        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);
+        value10.addAttribute("xsi:type", "xsd:string", null);
+        value10.addChild(omfactory.createText("strss fdfing1"));
+        OMElement value11 = omfactory.createOMElement("varInt", "", null);
+        value11.addAttribute("xsi:type", "xsd:int", null);
+        value11.addChild(omfactory.createText("25"));
+        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);
+        value20.addAttribute("xsi:type", "xsd:string", null);
+        value20.addChild(omfactory.createText("strss fdfing1"));
+        OMElement value21 = omfactory.createOMElement("varInt", "", null);
+        value21.addAttribute("xsi:type", "xsd:int", null);
+        value21.addChild(omfactory.createText("25"));
+        OMElement value22 = omfactory.createOMElement("varFloat", "", null);
+        value22.addAttribute("xsi:type", "xsd:float", null);
+        value22.addChild(omfactory.createText("25.23"));
+
+        item0.addChild(value00);
+        item0.addChild(value01);
+        item0.addChild(value02);
+
+        item1.addChild(value10);
+        item1.addChild(value11);
+        item1.addChild(value12);
+
+        item2.addChild(value20);
+        item2.addChild(value21);
+        item2.addChild(value22);
+
+        part.addChild(item0);
+        part.addChild(item1);
+        part.addChild(item2);
+
+        operation.addChild(part);
+
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringArrayUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringArrayUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringArrayUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringArrayUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,78 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GDRpcStringArrayUtil implements SunRound3ClientUtil{
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "tns");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoStringArray", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("param0", "", null);
+        part.addAttribute("xsi:type", "SOAP-ENC:Array", null);
+        part.addAttribute("SOAP-ENC:arrayType", "xsd:string[3]", null);
+
+        OMElement value0 = omfactory.createOMElement("varString", "", null);
+        value0.addAttribute("xsi:type", "xsd:string", null);
+        value0.addChild(omfactory.createText("Apache Axis2"));
+        OMElement value1 = omfactory.createOMElement("varString", "", null);
+        value1.addAttribute("xsi:type", "xsd:string", null);
+        value1.addChild(omfactory.createText("Lanka Software Foundation"));
+        OMElement value2 = omfactory.createOMElement("varString", "", null);
+        value2.addAttribute("xsi:type", "xsd:string", null);
+        value2.addChild(omfactory.createText("www.opensource.lk"));
+
+        part.addChild(value0);
+        part.addChild(value1);
+        part.addChild(value2);
+
+        operation.addChild(part);
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStringUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,64 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GDRpcStringUtil implements SunRound3ClientUtil {
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "tns");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("param0", "", null);
+        part.addAttribute("xsi:type", "xsd:string", null);
+        part.addChild(omfactory.createText("strss fdfing1"));
+
+        operation.addChild(part);
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStructUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStructUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStructUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcStructUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,74 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GDRpcStructUtil implements SunRound3ClientUtil{
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        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);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("param0", "", null);
+        part.addAttribute("xsi:type", "s:SOAPStruct", null);
+
+        OMElement value0 = omfactory.createOMElement("varString", "", null);
+        value0.addAttribute("xsi:type", "xsd:string", null);
+        value0.addChild(omfactory.createText("strss fdfing1"));
+        OMElement value1 = omfactory.createOMElement("varInt", "", null);
+        value1.addAttribute("xsi:type", "xsd:int", null);
+        value1.addChild(omfactory.createText("25"));
+        OMElement value2 = omfactory.createOMElement("varFloat", "", null);
+        value2.addAttribute("xsi:type", "xsd:float", null);
+        value2.addChild(omfactory.createText("25.23"));
+        part.addChild(value0);
+        part.addChild(value1);
+        part.addChild(value2);
+        operation.addChild(part);
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcVoidUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcVoidUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcVoidUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GDRpcVoidUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,58 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GDRpcVoidUtil implements SunRound3ClientUtil{
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "tns");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoVoid", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        return reqEnv;
+
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GEListUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GEListUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GEListUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GEListUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,124 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GEListUtil implements SunRound3ClientUtil {
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestRpcEnc", "ns1");
+        reqEnv.declareNamespace("http://soapinterop.org/WSDLInteropTestList", "ns2");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoLinkedList", "http://soapinterop.org/WSDLInteropTestRpcEnc", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("param0", "", null);
+        part.addAttribute("xsi:type", "s:List", null);
+
+
+        OMElement value00 = omfactory.createOMElement("varInt", "", null);
+        value00.addAttribute("xsi:type", "xsd:int", null);
+        value00.addChild(omfactory.createText("255"));
+        OMElement value01 = omfactory.createOMElement("varString", "", null);
+        value01.addAttribute("xsi:type", "xsd:string", null);
+        value01.addChild(omfactory.createText("Axis2"));
+        OMElement value02 = omfactory.createOMElement("child", "", null);
+        //value02.addAttribute("xsi:type", "xsd:anyType", null);
+        value02.addAttribute("href", "#ID1", null);
+
+
+        OMElement part2 = omfactory.createOMElement("item0", null);
+        part2.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        part2.addAttribute("xsi:type", "s:List", null);
+        part2.addAttribute("id", "ID1", null);
+
+
+        OMElement value10 = omfactory.createOMElement("varInt", "", null);
+        value10.addAttribute("xsi:type", "xsd:int", null);
+        value10.addChild(omfactory.createText("21"));
+        OMElement value11 = omfactory.createOMElement("varString", "", null);
+        value11.addAttribute("xsi:type", "xsd:string", null);
+        value11.addChild(omfactory.createText("LSF"));
+        OMElement value12 = omfactory.createOMElement("child", "", null);
+        value12.addAttribute("xsi:type", "xsd:anyType", null);
+        value12.addAttribute(" xsi:nil", "1", null);
+//
+//        OMElement item2 = omfactory.createOMElement("item0", 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);
+//        value21.addAttribute("xsi:type", "xsd:int", null);
+//        value21.addChild(omfactory.createText("25"));
+//        OMElement value22 = omfactory.createOMElement("varFloat", "", null);
+//        value22.addAttribute("xsi:type", "xsd:float", null);
+//        value22.addChild(omfactory.createText("25.23"));
+
+        part.addChild(value00);
+        part.addChild(value01);
+        part.addChild(value02);
+
+        part2.addChild(value10);
+        part2.addChild(value11);
+        part2.addChild(value12);
+//
+//        item2.addChild(value20);
+//        item2.addChild(value21);
+//        item2.addChild(value22);
+
+//        part.addChild(item0);
+//        part.addChild(item1);
+//        part.addChild(item2);
+
+        operation.addChild(part);
+        body.addChild(part2);
+
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+
+    }
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GFHeaderTestUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GFHeaderTestUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GFHeaderTestUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/GFHeaderTestUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,77 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.soap.*;
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMNamespace;
+import org.apache.axis2.om.OMElement;
+
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class GFHeaderTestUtil implements SunRound3ClientUtil{
+
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        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://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        SOAPHeader header = omfactory.createSOAPHeader(reqEnv);
+        OMNamespace ns = header.declareNamespace("http://soapinterop.org/xsd", "ns0");
+        header.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+        SOAPHeaderBlock blk1 = header.addHeaderBlock("Header1", ns);
+        OMElement h1Value1 = omfactory.createOMElement("string", ns);
+        h1Value1.addChild(omfactory.createText("String at header1"));
+        OMElement h1Value2 = omfactory.createOMElement("int", ns);
+        h1Value2.addChild(omfactory.createText("561565"));
+        blk1.addChild(h1Value1);
+        blk1.addChild(h1Value2);
+
+        SOAPHeaderBlock blk2 = header.addHeaderBlock("Header2", ns);
+        OMElement h2Value1 = omfactory.createOMElement("string", ns);
+        h2Value1.addChild(omfactory.createText("String at header2"));
+        OMElement h2Value2 = omfactory.createOMElement("int", ns);
+        h2Value2.addChild(omfactory.createText("55"));
+        blk2.addChild(h2Value2);
+        blk2.addChild(h2Value1);
+
+        OMElement operation = omfactory.createOMElement("echoStringParam", "http://soapinterop.org/xsd", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addChild(omfactory.createText("apache axis2"));
+        return reqEnv;
+
+    }
+
+
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/Round3EmptySAEchoStringUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/Round3EmptySAEchoStringUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/Round3EmptySAEchoStringUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/Round3EmptySAEchoStringUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,64 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.om.OMAbstractFactory;
+import org.apache.axis2.om.OMElement;
+import org.apache.axis2.soap.SOAPBody;
+import org.apache.axis2.soap.SOAPEnvelope;
+import org.apache.axis2.soap.SOAPFactory;
+
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public class Round3EmptySAEchoStringUtil implements SunRound3ClientUtil{
+    public SOAPEnvelope getEchoSoapEnvelope() {
+
+        SOAPFactory omfactory = OMAbstractFactory.getSOAP11Factory();
+        SOAPEnvelope reqEnv = omfactory.createSOAPEnvelope();
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/envelope/", "soapenv");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "xmlns");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/soap/", "soap");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema", "xsd");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/soap/encoding/", "SOAP-ENC");
+        reqEnv.declareNamespace("http://soapinterop/", "tns");
+        reqEnv.declareNamespace("http://soapinterop.org/xsd", "s");
+        reqEnv.declareNamespace("http://schemas.xmlsoap.org/wsdl/", "wsdl");
+        reqEnv.declareNamespace("http://www.w3.org/2001/XMLSchema-instance","xsi");
+
+        OMElement operation = omfactory.createOMElement("echoString", "http://soapinterop/", null);
+        SOAPBody body = omfactory.createSOAPBody(reqEnv);
+        body.addChild(operation);
+        operation.addAttribute("soapenv:encodingStyle", "http://schemas.xmlsoap.org/soap/encoding/", null);
+
+        OMElement part = omfactory.createOMElement("a", "", null);
+        part.addAttribute("xsi:type", "xsd:string", null);
+        part.addChild(omfactory.createText("strss fdfing1"));
+
+        operation.addChild(part);
+        //reqEnv.getBody().addChild(method);
+        return reqEnv;
+
+    }
+
+}

Added: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/SunRound3ClientUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/SunRound3ClientUtil.java?rev=278936&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/SunRound3ClientUtil.java (added)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round3/util/SunRound3ClientUtil.java Tue Sep  6 00:28:01 2005
@@ -0,0 +1,31 @@
+package org.apache.axis2.interopt.whitemesa.round3.util;
+
+import org.apache.axis2.soap.SOAPEnvelope;
+
+/*
+* 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.
+*
+*
+*/
+
+/**
+ * Author: Gayan Asanka
+ * Date: Aug 23, 2005
+ * Time: 4:27:20 PM
+ */
+
+public interface SunRound3ClientUtil {
+    SOAPEnvelope getEchoSoapEnvelope();
+}

Modified: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/complex/EchoBlockingClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/complex/EchoBlockingClient.java?rev=278936&r1=278935&r2=278936&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/complex/EchoBlockingClient.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/complex/EchoBlockingClient.java Tue Sep  6 00:28:01 2005
@@ -6,7 +6,7 @@
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.interopt.whitemesa.round4.complex.utils.WhitemesaR4ClientUtil;
 import org.apache.axis2.om.OMElement;
-import java.io.StringWriter;
+
 
 /*
 * Copyright 2004,2005 The Apache Software Foundation.
@@ -28,7 +28,7 @@
 
 public class EchoBlockingClient {
 
-    public OMElement sendMsg(WhitemesaR4ClientUtil util, String soapAction) {
+    public OMElement sendMsg(WhitemesaR4ClientUtil util, String soapAction) throws AxisFault {
         OMElement firstchild = null;
 
         EndpointReference targetEPR = new EndpointReference("http://www.whitemesa.net/interop/r4/fault-rpc-complex");
@@ -36,7 +36,7 @@
         try {
 
 
-            Call call = new Call();
+            Call call = new Call("target/test-resources/intregrationRepo");
             call.setTo(targetEPR);
             call.setExceptionToBeThrownOnSOAPFault(false);
             call.setTransportInfo(Constants.TRANSPORT_HTTP, Constants.TRANSPORT_HTTP, false);
@@ -46,13 +46,9 @@
 
             firstchild = call.invokeBlocking("", util.getEchoOMElement());
 
-            StringWriter writer = new StringWriter();
-
-            System.out.println(writer.toString());
-
-        } catch (AxisFault axisFault) {
-            axisFault.printStackTrace();
 
+        } catch (Exception e) {
+            throw new AxisFault(e);
         }
         return firstchild;
 

Modified: webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/simple/EchoBlockingClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/simple/EchoBlockingClient.java?rev=278936&r1=278935&r2=278936&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/simple/EchoBlockingClient.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/org/apache/axis2/interopt/whitemesa/round4/simple/EchoBlockingClient.java Tue Sep  6 00:28:01 2005
@@ -6,19 +6,7 @@
 import org.apache.axis2.Constants;
 import org.apache.axis2.AxisFault;
 import org.apache.axis2.interopt.whitemesa.round4.simple.utils.WhitemesaR4ClientUtil;
-import org.apache.axis2.soap.SOAPEnvelope;
-import org.apache.axis2.soap.impl.llom.builder.StAXSOAPModelBuilder;
 import org.apache.axis2.om.OMElement;
-import org.apache.axis2.om.OMXMLParserWrapper;
-import org.apache.axis2.om.impl.llom.util.XMLComparator;
-import org.apache.axis2.om.impl.llom.exception.XMLComparisonException;
-
-import javax.xml.stream.XMLOutputFactory;
-import javax.xml.stream.XMLStreamException;
-import javax.xml.stream.XMLStreamReader;
-import javax.xml.stream.XMLInputFactory;
-
-import java.io.*;
 
 
 /*
@@ -38,43 +26,34 @@
  *
  *
  */
+
 public class EchoBlockingClient {
 
 
-    public OMElement sendMsg(WhitemesaR4ClientUtil util,String soapAction){
-        OMElement firstchild=null;
+    public OMElement sendMsg(WhitemesaR4ClientUtil util, String soapAction) throws AxisFault {
+        OMElement firstchild = null;
 //        EndpointReference targetEPR = new EndpointReference("http://www.whitemesa.net:80/interop/r4/fault-rpc" );
-        EndpointReference targetEPR = new EndpointReference("http://www.whitemesa.net:80/interop/r4/fault-rpc" );
+        EndpointReference targetEPR = new EndpointReference("http://www.whitemesa.net:80/interop/r4/fault-rpc");
 
         try {
 
 
-            Call call = new Call();
+            Call call = new Call("target/test-resources/intregrationRepo");
             call.setTo(targetEPR);
             call.setExceptionToBeThrownOnSOAPFault(false);
-            call.setTransportInfo(Constants.TRANSPORT_HTTP,Constants.TRANSPORT_HTTP,false);
-             call.setSoapAction(soapAction);
+            call.setTransportInfo(Constants.TRANSPORT_HTTP, Constants.TRANSPORT_HTTP, false);
+            call.setSoapAction(soapAction);
             //Blocking invocation
 
-            firstchild = call.invokeBlocking("",util.getEchoOMElement());
+            firstchild = call.invokeBlocking("", util.getEchoOMElement());
 
-            StringWriter writer = new StringWriter();
-
-//            firstchild.serializeWithCache(XMLOutputFactory.newInstance()
-//                    .createXMLStreamWriter(writer));
-//            writer.flush();
-
-            System.out.println(writer.toString());
-//
-        } catch (AxisFault axisFault) {
-            axisFault.printStackTrace();
-//        } catch (XMLStreamException e) {
-//            e.printStackTrace();
 
+        } catch (Exception e) {
+            throw new AxisFault(e);
         }
         return firstchild;
 
     }
-  
+
 }