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 ch...@apache.org on 2005/08/02 05:32:23 UTC

svn commit: r226931 [21/24] - in /webservices/axis/trunk/archive/java/scratch/Nadana: ./ WS-Interop/ WS-Interop/Compound1/ WS-Interop/Compound1/src/ WS-Interop/Compound1/src/org/ WS-Interop/Compound1/src/org/soapinterop/ WS-Interop/Compound1/src/org/so...

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/org/soapinterop/xsd/impl/SOAPStructImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/org/soapinterop/xsd/impl/SOAPStructImpl.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/org/soapinterop/xsd/impl/SOAPStructImpl.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/org/soapinterop/xsd/impl/SOAPStructImpl.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,233 @@
+/*
+ * XML Type:  SOAPStruct
+ * Namespace: http://soapinterop.org/xsd
+ * Java type: org.soapinterop.xsd.SOAPStruct
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.xsd.impl;
+/**
+ * An XML SOAPStruct(@http://soapinterop.org/xsd).
+ *
+ * This is a complex type.
+ */
+public class SOAPStructImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.soapinterop.xsd.SOAPStruct
+{
+    
+    public SOAPStructImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName VARFLOAT$0 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/xsd", "varFloat");
+    private static final javax.xml.namespace.QName VARINT$2 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/xsd", "varInt");
+    private static final javax.xml.namespace.QName VARSTRING$4 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/xsd", "varString");
+    
+    
+    /**
+     * Gets the "varFloat" element
+     */
+    public float getVarFloat()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VARFLOAT$0, 0);
+            if (target == null)
+            {
+                return 0.0f;
+            }
+            return target.getFloatValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "varFloat" element
+     */
+    public org.apache.xmlbeans.XmlFloat xgetVarFloat()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlFloat target = null;
+            target = (org.apache.xmlbeans.XmlFloat)get_store().find_element_user(VARFLOAT$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "varFloat" element
+     */
+    public void setVarFloat(float varFloat)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VARFLOAT$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(VARFLOAT$0);
+            }
+            target.setFloatValue(varFloat);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "varFloat" element
+     */
+    public void xsetVarFloat(org.apache.xmlbeans.XmlFloat varFloat)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlFloat target = null;
+            target = (org.apache.xmlbeans.XmlFloat)get_store().find_element_user(VARFLOAT$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlFloat)get_store().add_element_user(VARFLOAT$0);
+            }
+            target.set(varFloat);
+        }
+    }
+    
+    /**
+     * Gets the "varInt" element
+     */
+    public int getVarInt()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VARINT$2, 0);
+            if (target == null)
+            {
+                return 0;
+            }
+            return target.getIntValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "varInt" element
+     */
+    public org.apache.xmlbeans.XmlInt xgetVarInt()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlInt target = null;
+            target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(VARINT$2, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "varInt" element
+     */
+    public void setVarInt(int varInt)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VARINT$2, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(VARINT$2);
+            }
+            target.setIntValue(varInt);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "varInt" element
+     */
+    public void xsetVarInt(org.apache.xmlbeans.XmlInt varInt)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlInt target = null;
+            target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(VARINT$2, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(VARINT$2);
+            }
+            target.set(varInt);
+        }
+    }
+    
+    /**
+     * Gets the "varString" element
+     */
+    public java.lang.String getVarString()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VARSTRING$4, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "varString" element
+     */
+    public org.apache.xmlbeans.XmlString xgetVarString()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(VARSTRING$4, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "varString" element
+     */
+    public void setVarString(java.lang.String varString)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(VARSTRING$4, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(VARSTRING$4);
+            }
+            target.setStringValue(varString);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "varString" element
+     */
+    public void xsetVarString(org.apache.xmlbeans.XmlString varString)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(VARSTRING$4, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(VARSTRING$4);
+            }
+            target.set(varString);
+        }
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringArrayParam.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringArrayParam.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringArrayParam.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringArrayReturn.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringArrayReturn.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringArrayReturn.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringParam.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringParam.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringParam.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringReturn.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringReturn.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStringReturn.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStructParam.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStructParam.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStructParam.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStructReturn.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStructReturn.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/element/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/echoStructReturn.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/ArrayOfstringLiteral.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/ArrayOfstringLiteral.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/ArrayOfstringLiteral.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringArrayParamDocument.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringArrayParamDocument.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringArrayParamDocument.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringArrayReturnDocument.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringArrayReturnDocument.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringArrayReturnDocument.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringParamDocument.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringParamDocument.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringParamDocument.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringReturnDocument.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringReturnDocument.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStringReturnDocument.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStructParamDocument.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStructParamDocument.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStructParamDocument.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStructReturnDocument.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStructReturnDocument.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/EchoStructReturnDocument.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/SOAPStruct.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/SOAPStruct.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/javaname/org/soapinterop/xsd/SOAPStruct.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/namespace/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/xmlns.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/namespace/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/xmlns.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/namespace/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/xmlns.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/TypeSystemHolder.class
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/TypeSystemHolder.class?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/TypeSystemHolder.class
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/arrayofstringliterala948type.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/arrayofstringliterala948type.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/arrayofstringliterala948type.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayparam8b2ddoctype.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayparam8b2ddoctype.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayparam8b2ddoctype.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayparamelement.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayparamelement.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayparamelement.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayreturnde16doctype.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayreturnde16doctype.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayreturnde16doctype.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayreturnelement.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayreturnelement.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringarrayreturnelement.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringparam4332doctype.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringparam4332doctype.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringparam4332doctype.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringparamelement.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringparamelement.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringparamelement.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringreturn26b1doctype.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringreturn26b1doctype.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringreturn26b1doctype.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringreturnelement.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringreturnelement.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostringreturnelement.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructparam5ef6doctype.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructparam5ef6doctype.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructparam5ef6doctype.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructparamelement.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructparamelement.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructparamelement.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructreturn836ddoctype.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructreturn836ddoctype.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructreturn836ddoctype.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructreturnelement.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructreturnelement.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/echostructreturnelement.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/index.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/index.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/index.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/soapstruct93e7type.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/soapstruct93e7type.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/system/foo/soapstruct93e7type.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/type/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/ArrayOfstring_5Fliteral.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/type/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/ArrayOfstring_5Fliteral.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/type/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/ArrayOfstring_5Fliteral.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/type/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/SOAPStruct.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/type/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/SOAPStruct.xsb?rev=226931&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLit/src/schema/type/http_3A_2F_2Fsoapinterop_2Eorg_2Fxsd/SOAPStruct.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/InteropTestDocLitParameters.wsdl
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/InteropTestDocLitParameters.wsdl?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/InteropTestDocLitParameters.wsdl (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/InteropTestDocLitParameters.wsdl Mon Aug  1 20:09:56 2005
@@ -0,0 +1,175 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions name="WSDLInteropTestDocLitService" 
+    targetNamespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+    xmlns="http://schemas.xmlsoap.org/wsdl/" 
+    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:tns="http://soapinterop.org/WSDLInteropTestDocLit" 
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
+    xmlns:xsd1="http://soapinterop.org/xsd"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <types>
+        <schema targetNamespace="http://soapinterop.org/xsd"
+            xmlns="http://www.w3.org/2001/XMLSchema" 
+            xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+	     <complexType name="ArrayOfstring_literal">
+                <sequence>
+                    <element maxOccurs="unbounded" minOccurs="1" name="string" type="xsd:string"/>
+                </sequence>
+            </complexType>
+	    <complexType name="SOAPStruct">
+                <all>
+                    <element name="varFloat" type="xsd:float"/>
+                    <element name="varInt" type="xsd:int"/>
+                    <element name="varString" type="xsd:string"/>
+                </all>
+            </complexType>            
+
+            <element name="echoString">
+                <complexType>
+                    <sequence>
+                        <element name="param0" type="xsd:string"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="echoStringResponse">
+                <complexType>
+                    <sequence>
+                        <element name="return" type="xsd:string"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="echoStringArray">
+                <complexType>
+                    <sequence>
+                        <element name="param0" type="xsd1:ArrayOfstring_literal"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="echoStringArrayResponse">
+                <complexType>
+                    <sequence>
+                        <element name="return" type="xsd1:ArrayOfstring_literal"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="echoStruct">
+                <complexType>
+                    <sequence>
+                        <element name="param0" type="xsd1:SOAPStruct"/>
+                    </sequence>
+                </complexType>
+            </element>
+            <element name="echoStructResponse">
+                <complexType>
+                    <sequence>
+                        <element name="return" type="xsd1:SOAPStruct"/>
+                    </sequence>
+                </complexType>
+            </element>           
+            <element name="echoVoid">
+                <complexType/>
+            </element>
+            <element name="echoVoidResponse">
+                <complexType/>
+            </element>
+        </schema>
+    </types>
+    <message name="echoString">
+        <part element="xsd1:echoString" name="parameters"/>
+    </message>
+    <message name="echoStringResponse">
+        <part element="xsd1:echoStringResponse" name="parameters"/>
+    </message>
+    <message name="echoStringArray">
+        <part element="xsd1:echoStringArray" name="parameters"/>
+    </message>
+    <message name="echoStringArrayResponse">
+        <part element="xsd1:echoStringArrayResponse" name="parameters"/>
+    </message>
+    <message name="echoStruct">
+        <part element="xsd1:echoStruct" name="parameters"/>
+    </message>
+    <message name="echoStructResponse">
+        <part element="xsd1:echoStructResponse" name="parameters"/>
+    </message>
+    <message name="echoVoid">
+        <part element="xsd1:echoVoid" name="parameters"/>
+    </message>
+    <message name="echoVoidResponse">
+        <part element="xsd1:echoVoidResponse" name="parameters"/>
+    </message>
+    <portType name="WSDLInteropTestDocLitPortType">
+        <operation name="echoString">
+            <input message="tns:echoString" name="echoString"/>
+            <output message="tns:echoStringResponse" name="echoStringResponse"/>
+        </operation>
+        <operation name="echoStringArray">
+            <input message="tns:echoStringArray" name="echoStringArray"/>
+            <output message="tns:echoStringArrayResponse" name="echoStringArrayResponse"/>
+        </operation>
+        <operation name="echoStruct">
+            <input message="tns:echoStruct" name="echoStruct"/>
+            <output message="tns:echoStructResponse" name="echoStructResponse"/>
+        </operation>
+        <operation name="echoVoid">
+            <input message="tns:echoVoid" name="echoVoid"/>
+            <output message="tns:echoVoidResponse" name="echoVoidResponse"/>
+        </operation>
+    </portType>
+    <binding name="WSDLInteropTestDocLitPortBinding" 
+        type="tns:WSDLInteropTestDocLitPortType">
+        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+        <operation name="echoString">
+            <soap:operation soapAction="http://soapinterop.org/" style="document"/>
+            <input name="echoString">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </input>
+            <output name="echoStringResponse">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </output>
+        </operation>
+        <operation name="echoStringArray">
+            <soap:operation soapAction="http://soapinterop.org/" style="document"/>
+            <input name="echoStringArray">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </input>
+            <output name="echoStringArrayResponse">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </output>
+        </operation>
+        <operation name="echoStruct">
+            <soap:operation soapAction="http://soapinterop.org/" style="document"/>
+            <input name="echoStruct">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </input>
+            <output name="echoStructResponse">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </output>
+        </operation>
+        <operation name="echoVoid">
+            <soap:operation soapAction="http://soapinterop.org/" style="document"/>
+            <input name="echoVoid">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </input>
+            <output name="echoVoidResponse">
+                <soap:body namespace="http://soapinterop.org/WSDLInteropTestDocLit" 
+                    use="literal"/>
+            </output>
+        </operation>
+    </binding>
+    <service name="WSDLInteropTestDocLitService">
+        <port binding="tns:WSDLInteropTestDocLitPortBinding" 
+            name="WSDLInteropTestDocLitPort">
+            <soap:address 
+                location="http://mssoapinterop.org/stkv3/wsdl/interopTestDocLitParameters.wsdl"/>
+        </port>
+    </service>
+</definitions>

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/axis2.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/axis2.xml?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/axis2.xml (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/axis2.xml Mon Aug  1 20:09:56 2005
@@ -0,0 +1,92 @@
+<axisconfig name="AxisJava2.0">
+   <!-- ================================================= -->
+   <!-- Parameters -->
+   <!-- ================================================= -->
+    <parameter name="hotdeployment" locked="xsd:false">true</parameter>
+    <parameter name="hotupdate" locked="xsd:false">false</parameter>
+    <!-- Uncomment this to enable REST support -->
+<!--    <parameter name="enableREST" locked="xsd:false">true</parameter>-->
+
+
+
+    <parameter name="userName" locked="xsd:false">admin</parameter>
+    <parameter name="password" locked="xsd:false">axis2</parameter>
+
+
+
+   <!-- ================================================= -->
+   <!-- Message Receivers -->
+   <!-- ================================================= -->
+    <!-- This is the Deafult Message Receiver for the Request Response style Operations -->
+    <messageReceiver mep="INOUT" class="org.apache.axis2.receivers.RawXMLINOutMessageReceiver"/>
+
+   <!-- ================================================= -->
+   <!-- Transport Ins -->
+   <!-- ================================================= -->
+    <transportReceiver name="http" class="org.apache.axis2.transport.http.SimpleHTTPServer">
+        <parameter name="port" locked="xsd:false">6060</parameter>
+    </transportReceiver>
+
+  <!-- Uncomment this one with the appropriate papameters to enable the SMTP transport Receiver
+  <transportReceiver name="mail" class="org.apache.axis2.transport.mail.SimpleMailListener">
+        <parameter name="transport.mail.pop3.host" locked="xsd:false">127.0.0.1</parameter>
+        <parameter name="transport.mail.pop3.user" locked="xsd:false">axis2</parameter>
+        <parameter name="transport.mail.pop3.password" locked="xsd:false">axis2</parameter>
+        <parameter name="transport.mail.pop3.port" locked="xsd:false">110</parameter>
+        <parameter name="transport.mail.replyToAddress" locked="xsd:false">axis2@127.0.0.1</parameter>
+    </transportReceiver> -->
+
+    <transportReceiver name="tcp" class="org.apache.axis2.transport.tcp.TCPServer">
+        <parameter name="port" locked="xsd:false">6060</parameter>
+    </transportReceiver>
+
+   <!-- ================================================= -->
+   <!-- Transport Outs -->
+   <!-- ================================================= -->
+
+    <transportSender name="http" class="org.apache.axis2.transport.http.HTTPTransportSender"/>
+    <transportSender name="tcp" class="org.apache.axis2.transport.tcp.TCPTransportSender"/>
+    <transportSender name="local" class="org.apache.axis2.transport.local.LocalTransportSender"/>
+
+     <!-- Uncomment this one with the appropriate papameters to enable the SMTP transport Receiver
+    <transportSender name="mail" class="org.apache.axis2.transport.mail.MailTransportSender">
+        <parameter name="transport.mail.smtp.host" locked="xsd:false">127.0.0.1</parameter>
+        <parameter name="transport.mail.smtp.user" locked="xsd:false">axis2</parameter>
+        <parameter name="transport.mail.smtp.password" locked="xsd:false">axis2</parameter>
+        <parameter name="transport.mail.smtp.port" locked="xsd:false">25</parameter>
+    </transportSender>
+    -->
+
+   <!-- ================================================= -->
+   <!-- Global Modules  -->
+   <!-- ================================================= -->
+    <!-- Uncomment this to enable Addressing
+    <module ref="addressing"/> -->
+
+   <!-- ================================================= -->
+   <!-- Phases  -->
+   <!-- ================================================= -->
+    <phaseOrder type="inflow">
+        <!--  System pre defined phases       -->
+        <phase name="TransportIn"/>
+        <phase name="PreDispatch"/>
+        <phase name="Dispatch"/>
+        <phase name="PostDispatch"/>
+        <!--  System pre defined phases       -->
+        <!--   After Postdispatch phase module author or or service author can add any phase he want      -->
+        <phase name="userphase1"/>
+    </phaseOrder>
+    <phaseOrder type="outflow">
+        <!--      user can add his own phases to this area  -->
+        <phase name="userphase1"/>
+    </phaseOrder>
+    <phaseOrder type="INfaultflow">
+        <!--      user can add his own phases to this area  -->
+        <phase name="userphase1"/>
+    </phaseOrder>
+    <phaseOrder type="Outfaultflow">
+        <!--      user can add his own phases to this area  -->
+        <phase name="userphase1"/>
+    </phaseOrder>
+</axisconfig>
+

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringArrayClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringArrayClient.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringArrayClient.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringArrayClient.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,48 @@
+
+import org.soapinterop.WSDLInteropTestDocLitPortTypeStub;
+import org.soapinterop.xsd.EchoStringArrayDocument;
+import org.soapinterop.xsd.ArrayOfstringLiteral;
+import org.soapinterop.xsd.EchoStringArrayResponseDocument;
+
+/**
+ * Created by IntelliJ IDEA.
+ * User: Administrator
+ * Date: Jul 19, 2005
+ * Time: 4:59:23 PM
+ * To change this template use File | Settings | File Templates.
+ */
+public class EchoStringArrayClient {
+    public static void main(String[] args) {
+        try{
+        WSDLInteropTestDocLitPortTypeStub stub=new WSDLInteropTestDocLitPortTypeStub();
+          EchoStringArrayDocument reqDoc=EchoStringArrayDocument.Factory.newInstance();
+             EchoStringArrayDocument.EchoStringArray paramArr=EchoStringArrayDocument.EchoStringArray.Factory.newInstance();
+
+            ArrayOfstringLiteral arr=ArrayOfstringLiteral.Factory.newInstance();
+            arr.insertString(0,"hi");
+            arr.insertString(1,"nadana");
+
+
+            paramArr.setParam0(arr);
+            reqDoc.setEchoStringArray1(paramArr);
+            //stub.echoStringArray(reqDoc);
+
+            EchoStringArrayResponseDocument resDoc = stub.echoStringArray(reqDoc);
+            String[] resParams = resDoc.getEchoStringArrayResponse().getReturn().getStringArray();
+            for (int i = 0; i < resParams.length; i++) {
+                System.out.println(resParams[i]);
+            }
+
+
+
+
+
+
+            //reqDoc.setEchoStringArray1();
+
+
+    } catch (Exception e) {
+            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
+        }
+    }
+}
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringClient.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringClient.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStringClient.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,38 @@
+
+import org.soapinterop.WSDLInteropTestDocLitPortTypeStub;
+import org.soapinterop.xsd.EchoStringDocument;
+import org.soapinterop.xsd.EchoStringResponseDocument;
+import org.apache.xmlbeans.XmlString;
+import org.apache.xml.utils.XMLString;
+
+/**
+ * Created by IntelliJ IDEA.
+ * User: Administrator
+ * Date: Jul 19, 2005
+ * Time: 2:17:02 PM
+ * To change this template use File | Settings | File Templates.
+ */
+public class EchoStringClient {
+    public static void main(String[] args) {
+        try{
+
+            WSDLInteropTestDocLitPortTypeStub stub=new WSDLInteropTestDocLitPortTypeStub();
+            EchoStringDocument reqDoc=EchoStringDocument.Factory.newInstance();
+            EchoStringDocument.EchoString echo=EchoStringDocument.EchoString.Factory.newInstance();
+            //XmlString str=XmlString.Factory.newInstance();
+            
+            echo.setParam0("hi");
+
+            //echo.xsetParam0(str);
+            reqDoc.addNewEchoString();
+
+            //reqDoc.setEchoString(echo);
+
+            EchoStringResponseDocument resDoc=stub.echoString(reqDoc);
+            System.out.println(resDoc.getEchoStringResponse());
+
+        }   catch (Exception e) {
+            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
+        }
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStructClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStructClient.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStructClient.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoStructClient.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,43 @@
+
+import org.soapinterop.WSDLInteropTestDocLitPortTypeStub;
+import org.soapinterop.xsd.EchoStructDocument;
+import org.soapinterop.xsd.SOAPStruct;
+import org.soapinterop.xsd.EchoStructResponseDocument;
+
+/**
+ * Created by IntelliJ IDEA.
+ * User: Administrator
+ * Date: Jul 20, 2005
+ * Time: 9:45:11 AM
+ * To change this template use File | Settings | File Templates.
+ */
+public class EchoStructClient {
+    public static void main(String[] args) {
+
+        try{
+            WSDLInteropTestDocLitPortTypeStub stub=new WSDLInteropTestDocLitPortTypeStub();
+            EchoStructDocument reqDoc=EchoStructDocument.Factory.newInstance();
+            EchoStructDocument.EchoStruct struct=EchoStructDocument.EchoStruct.Factory.newInstance();
+            SOAPStruct reqStr=SOAPStruct.Factory.newInstance();
+
+            reqStr.setVarFloat(12);
+            reqStr.setVarInt(20);
+            reqStr.setVarString("nadana");
+
+
+            //struct.setParam0(reqStr);
+
+
+            reqDoc.setEchoStruct(struct);
+
+            EchoStructResponseDocument resDoc= stub.echoStruct(reqDoc);
+
+
+            resDoc.getEchoStructResponse();
+
+
+        }  catch (Exception e) {
+            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
+        }
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoVoidClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoVoidClient.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoVoidClient.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/EchoVoidClient.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,32 @@
+
+import org.soapinterop.WSDLInteropTestDocLitPortTypeStub;
+import org.soapinterop.xsd.EchoVoidDocument;
+import org.soapinterop.xsd.EchoVoidResponseDocument;
+
+/**
+ * Created by IntelliJ IDEA.
+ * User: Administrator
+ * Date: Jul 19, 2005
+ * Time: 1:42:58 PM
+ * To change this template use File | Settings | File Templates.
+ */
+public class EchoVoidClient {
+    public static void main(String[] args) {
+        try{
+
+
+        WSDLInteropTestDocLitPortTypeStub stub=new WSDLInteropTestDocLitPortTypeStub();
+            EchoVoidDocument reqDoc=EchoVoidDocument.Factory.newInstance();
+            EchoVoidDocument.EchoVoid echo=EchoVoidDocument.EchoVoid.Factory.newInstance();
+            reqDoc.setEchoVoid(echo);
+            EchoVoidResponseDocument resDoc=stub.echoVoid(reqDoc);
+
+            EchoVoidResponseDocument.EchoVoidResponse res=EchoVoidResponseDocument.EchoVoidResponse.Factory.newInstance();
+            resDoc.setEchoVoidResponse(res);
+            
+        } catch (Exception e) {
+            e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
+        }
+
+        }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortType.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortType.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortType.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortType.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,60 @@
+
+
+    package org.soapinterop;
+
+    /*
+     *  Auto generated java interface by the Axis code generator
+     */
+
+    public interface WSDLInteropTestDocLitPortType {
+     
+        /**
+         * Auto generated method signature 
+         *@param param24
+         */
+        public  org.soapinterop.xsd.EchoVoidResponseDocument echoVoid(org.soapinterop.xsd.EchoVoidDocument param24) throws java.rmi.RemoteException;
+        
+         /**
+         * Auto generated method signature
+         *@param param24
+         */
+        public  void startechoVoid(org.soapinterop.xsd.EchoVoidDocument param24,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException;
+        
+        /**
+         * Auto generated method signature 
+         *@param param26
+         */
+        public  org.soapinterop.xsd.EchoStringArrayResponseDocument echoStringArray(org.soapinterop.xsd.EchoStringArrayDocument param26) throws java.rmi.RemoteException;
+        
+         /**
+         * Auto generated method signature
+         *@param param26
+         */
+        public  void startechoStringArray(org.soapinterop.xsd.EchoStringArrayDocument param26,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException;
+        
+        /**
+         * Auto generated method signature 
+         *@param param28
+         */
+        public  org.soapinterop.xsd.EchoStructResponseDocument echoStruct(org.soapinterop.xsd.EchoStructDocument param28) throws java.rmi.RemoteException;
+        
+         /**
+         * Auto generated method signature
+         *@param param28
+         */
+        public  void startechoStruct(org.soapinterop.xsd.EchoStructDocument param28,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException;
+        
+        /**
+         * Auto generated method signature 
+         *@param param30
+         */
+        public  org.soapinterop.xsd.EchoStringResponseDocument echoString(org.soapinterop.xsd.EchoStringDocument param30) throws java.rmi.RemoteException;
+        
+         /**
+         * Auto generated method signature
+         *@param param30
+         */
+        public  void startechoString(org.soapinterop.xsd.EchoStringDocument param30,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException;
+        
+    }
+    
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeCallbackHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeCallbackHandler.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeCallbackHandler.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeCallbackHandler.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,102 @@
+
+    package org.soapinterop;
+
+    /**
+     *  Auto generated Callback class by the Axis code generator
+     */
+
+    public class WSDLInteropTestDocLitPortTypeCallbackHandler{
+    
+    
+    
+	private Object clientData;
+		
+		
+	/**
+	* User can pass in any object that needs to be accessed once the NonBlocking 
+	* Web service call is finished and appropreate method of this CallBack is called.
+	* @param clientData Object mechanism by which the user can pass in user data
+	* that will be avilable at the time this callback is called.
+	*/
+	public WSDLInteropTestDocLitPortTypeCallbackHandler(Object clientData){
+		this.clientData = clientData;
+	}
+
+
+	
+         /**
+         * auto generated Axis2 call back method for echoVoid method
+         *
+         */
+        public void receiveResultechoVoid(org.apache.axis2.clientapi.AsyncResult result) {
+			//Fill here with the code to handle the response
+			
+        }
+
+        /**
+         * auto generated Axis2 Error handler
+         *
+         */
+        public void receiveErrorechoVoid(java.lang.Exception e) {
+			//Fill here with the code to handle the exception
+
+        }
+     
+         /**
+         * auto generated Axis2 call back method for echoStringArray method
+         *
+         */
+        public void receiveResultechoStringArray(org.apache.axis2.clientapi.AsyncResult result) {
+			//Fill here with the code to handle the response
+			
+        }
+
+        /**
+         * auto generated Axis2 Error handler
+         *
+         */
+        public void receiveErrorechoStringArray(java.lang.Exception e) {
+			//Fill here with the code to handle the exception
+
+        }
+     
+         /**
+         * auto generated Axis2 call back method for echoStruct method
+         *
+         */
+        public void receiveResultechoStruct(org.apache.axis2.clientapi.AsyncResult result) {
+			//Fill here with the code to handle the response
+			
+        }
+
+        /**
+         * auto generated Axis2 Error handler
+         *
+         */
+        public void receiveErrorechoStruct(java.lang.Exception e) {
+			//Fill here with the code to handle the exception
+
+        }
+     
+         /**
+         * auto generated Axis2 call back method for echoString method
+         *
+         */
+        public void receiveResultechoString(org.apache.axis2.clientapi.AsyncResult result) {
+			//Fill here with the code to handle the response
+			
+        }
+
+        /**
+         * auto generated Axis2 Error handler
+         *
+         */
+        public void receiveErrorechoString(java.lang.Exception e) {
+			//Fill here with the code to handle the exception
+
+        }
+     
+
+     
+    }
+    
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeMessageReceiver.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeMessageReceiver.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeMessageReceiver.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,129 @@
+
+	
+    package org.soapinterop;
+
+    /**
+     *  Auto generated message receiver
+     */
+
+    public class WSDLInteropTestDocLitPortTypeMessageReceiver extends org.apache.axis2.receivers.AbstractInOutSyncMessageReceiver{
+    
+		public void invokeBusinessLogic(org.apache.axis2.context.MessageContext msgContext, org.apache.axis2.context.MessageContext newMsgContext)
+		throws org.apache.axis2.engine.AxisFault{
+    
+     try {
+
+            // get the implementation class for the Web Service
+            Object obj = getTheImplementationObject(msgContext);
+           
+            WSDLInteropTestDocLitPortTypeSkeleton skel = (WSDLInteropTestDocLitPortTypeSkeleton)obj;
+            //Out Envelop
+             org.apache.axis2.soap.SOAPEnvelope envelope = null;
+             //Find the operation that has been set by the Dispatch phase.
+            org.apache.axis2.description.OperationDescription op = msgContext.getOperationContext().getAxisOperation();
+            if (op == null) {
+                throw new org.apache.axis2.engine.AxisFault("Operation is not located, if this is doclit style the SOAP-ACTION should specified via the SOAP Action to use the RawXMLProvider");
+            }
+            
+            String methodName;
+            if(op.getName() != null & (methodName = op.getName().getLocalPart()) != null){
+            
+				
+					
+					
+					if(methodName.equals("echoVoid")){
+											
+				
+			org.soapinterop.xsd.EchoVoidResponseDocument param17 = null;
+						
+				//doc style
+					param17 = skel.echoVoid((org.soapinterop.xsd.EchoVoidDocument)org.soapinterop.databinding.echoVoidDatabindingSupporter.fromOM((org.apache.axis2.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild().detach(), org.soapinterop.xsd.EchoVoidDocument.class));
+						
+					//Create a default envelop
+					envelope = getSOAPFactory().getDefaultEnvelope();
+					//Create a Omelement of the result if a result exist
+					
+					envelope.getBody().setFirstChild(org.soapinterop.databinding.echoVoidDatabindingSupporter.toOM(param17));		
+					
+						
+						
+						
+					}
+			   
+					
+					
+					if(methodName.equals("echoStringArray")){
+											
+				
+			org.soapinterop.xsd.EchoStringArrayResponseDocument param19 = null;
+						
+				//doc style
+					param19 = skel.echoStringArray((org.soapinterop.xsd.EchoStringArrayDocument)org.soapinterop.databinding.echoStringArrayDatabindingSupporter.fromOM((org.apache.axis2.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild().detach(), org.soapinterop.xsd.EchoStringArrayDocument.class));
+						
+					//Create a default envelop
+					envelope = getSOAPFactory().getDefaultEnvelope();
+					//Create a Omelement of the result if a result exist
+					
+					envelope.getBody().setFirstChild(org.soapinterop.databinding.echoStringArrayDatabindingSupporter.toOM(param19));		
+					
+						
+						
+						
+					}
+			   
+					
+					
+					if(methodName.equals("echoStruct")){
+											
+				
+			org.soapinterop.xsd.EchoStructResponseDocument param21 = null;
+						
+				//doc style
+					param21 = skel.echoStruct((org.soapinterop.xsd.EchoStructDocument)org.soapinterop.databinding.echoStructDatabindingSupporter.fromOM((org.apache.axis2.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild().detach(), org.soapinterop.xsd.EchoStructDocument.class));
+						
+					//Create a default envelop
+					envelope = getSOAPFactory().getDefaultEnvelope();
+					//Create a Omelement of the result if a result exist
+					
+					envelope.getBody().setFirstChild(org.soapinterop.databinding.echoStructDatabindingSupporter.toOM(param21));		
+					
+						
+						
+						
+					}
+			   
+					
+					
+					if(methodName.equals("echoString")){
+											
+				
+			org.soapinterop.xsd.EchoStringResponseDocument param23 = null;
+						
+				//doc style
+					param23 = skel.echoString((org.soapinterop.xsd.EchoStringDocument)org.soapinterop.databinding.echoStringDatabindingSupporter.fromOM((org.apache.axis2.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild().detach(), org.soapinterop.xsd.EchoStringDocument.class));
+						
+					//Create a default envelop
+					envelope = getSOAPFactory().getDefaultEnvelope();
+					//Create a Omelement of the result if a result exist
+					
+					envelope.getBody().setFirstChild(org.soapinterop.databinding.echoStringDatabindingSupporter.toOM(param23));		
+					
+						
+						
+						
+					}
+			   
+			   
+			   newMsgContext.setEnvelope(envelope);
+            }
+           
+            
+
+        } catch (Exception e) {
+            throw org.apache.axis2.engine.AxisFault.makeFault(e);
+        }
+     
+		 }
+	
+    }
+    
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeSkeleton.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeSkeleton.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeSkeleton.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeSkeleton.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,60 @@
+
+
+    package org.soapinterop;
+
+    /**
+     *  Auto generated java skeleton for the service by the Axis code generator
+     */
+
+    public class WSDLInteropTestDocLitPortTypeSkeleton {
+       
+
+        /**
+         * Auto generated method signature
+         *@param param0
+         */
+        public  org.soapinterop.xsd.EchoVoidResponseDocument echoVoid(org.soapinterop.xsd.EchoVoidDocument param0){
+                //Todo fill this with the necessary business logic
+                return null;
+        }
+
+
+       
+
+        /**
+         * Auto generated method signature
+         *@param param2
+         */
+        public  org.soapinterop.xsd.EchoStringArrayResponseDocument echoStringArray(org.soapinterop.xsd.EchoStringArrayDocument param2){
+                //Todo fill this with the necessary business logic
+                return null;
+        }
+
+
+       
+
+        /**
+         * Auto generated method signature
+         *@param param4
+         */
+        public  org.soapinterop.xsd.EchoStructResponseDocument echoStruct(org.soapinterop.xsd.EchoStructDocument param4){
+                //Todo fill this with the necessary business logic
+                return null;
+        }
+
+
+       
+
+        /**
+         * Auto generated method signature
+         *@param param6
+         */
+        public  org.soapinterop.xsd.EchoStringResponseDocument echoString(org.soapinterop.xsd.EchoStringDocument param6){
+                //Todo fill this with the necessary business logic
+                return null;
+        }
+
+
+     
+    }
+    
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeStub.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeStub.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeStub.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/InteropTestDocLitParameters/src/org/soapinterop/WSDLInteropTestDocLitPortTypeStub.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,304 @@
+
+    package org.soapinterop;
+
+    /*
+     *  Auto generated java implementation by the Axis code generator
+    */
+
+    public class WSDLInteropTestDocLitPortTypeStub extends org.apache.axis2.clientapi.Stub implements WSDLInteropTestDocLitPortType{
+        public static final String AXIS2_HOME = ".";
+        protected static org.apache.axis2.description.OperationDescription[] _operations;
+
+        static{
+
+           //creating the Service
+           _service = new org.apache.axis2.description.ServiceDescription(new javax.xml.namespace.QName("http://soapinterop.org/WSDLInteropTestDocLit","WSDLInteropTestDocLitPortType"));
+
+           //creating the operations
+           org.apache.axis2.description.OperationDescription __operation;
+           _operations = new org.apache.axis2.description.OperationDescription[4];
+      
+          __operation = new org.apache.axis2.description.OperationDescription();
+          __operation.setName(new javax.xml.namespace.QName("http://soapinterop.org/WSDLInteropTestDocLit", "echoVoid"));
+          _operations[0]=__operation;
+          _service.addOperation(__operation);
+     
+          __operation = new org.apache.axis2.description.OperationDescription();
+          __operation.setName(new javax.xml.namespace.QName("http://soapinterop.org/WSDLInteropTestDocLit", "echoStringArray"));
+          _operations[1]=__operation;
+          _service.addOperation(__operation);
+     
+          __operation = new org.apache.axis2.description.OperationDescription();
+          __operation.setName(new javax.xml.namespace.QName("http://soapinterop.org/WSDLInteropTestDocLit", "echoStruct"));
+          _operations[2]=__operation;
+          _service.addOperation(__operation);
+     
+          __operation = new org.apache.axis2.description.OperationDescription();
+          __operation.setName(new javax.xml.namespace.QName("http://soapinterop.org/WSDLInteropTestDocLit", "echoString"));
+          _operations[3]=__operation;
+          _service.addOperation(__operation);
+     
+       }
+
+       /**
+        * Constructor
+        */
+        public WSDLInteropTestDocLitPortTypeStub(String axis2Home,String targetEndpoint) throws java.lang.Exception {
+
+			this.toEPR = new org.apache.axis2.addressing.EndpointReference(org.apache.axis2.addressing.AddressingConstants.WSA_TO, targetEndpoint);
+		    //creating the configuration
+           _configurationContext = new org.apache.axis2.context.ConfigurationContextFactory().buildClientConfigurationContext(axis2Home);
+           _configurationContext.getAxisConfiguration().addService(_service);
+           _serviceContext = _configurationContext.createServiceContext(_service.getName());
+
+	    }
+
+        /**
+        * Default Constructor
+        */
+        public WSDLInteropTestDocLitPortTypeStub() throws java.lang.Exception {
+		    //this(AXIS2_HOME,"http://mssoapinterop.org/stkv3/wsdl/interopTestDocLitParameters.wsdl" );
+
+            this(AXIS2_HOME,"http://localhost:7070/stkv3/wsdl/interopTestDocLitParameters.wsdl" );
+
+
+
+	    }
+
+
+
+     
+        /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#echoVoid
+         *@param param32
+         */
+        public  org.soapinterop.xsd.EchoVoidResponseDocument echoVoid(org.soapinterop.xsd.EchoVoidDocument param32) throws java.rmi.RemoteException{
+
+		    org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		    org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+            _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+            org.apache.axis2.soap.SOAPEnvelope env = null;
+            env = createEnvelope();
+            
+                       //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoVoidDatabindingSupporter.toOM(param32));
+                      
+             _messageContext.setEnvelope(env);
+             
+             org.apache.axis2.context.MessageContext  _returnMessageContext = _call.invokeBlocking(_operations[0], _messageContext);
+             org.apache.axis2.soap.SOAPEnvelope _returnEnv = _returnMessageContext.getEnvelope();
+             java.lang.Object object = org.soapinterop.databinding.echoVoidDatabindingSupporter.fromOM(getElement(_returnEnv,"doc"),org.soapinterop.xsd.EchoVoidResponseDocument.class);
+             return (org.soapinterop.xsd.EchoVoidResponseDocument)object;
+                 
+
+            
+        }
+        
+         /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#startechoVoid
+         *@param param32
+         */
+        public  void startechoVoid(org.soapinterop.xsd.EchoVoidDocument param32,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException{
+             org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		     org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+             _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+             org.apache.axis2.soap.SOAPEnvelope env = createEnvelope();
+             
+                         //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoVoidDatabindingSupporter.toOM(param32));
+                      
+             _messageContext.setEnvelope(env);
+		      _call.invokeNonBlocking(_operations[0], _messageContext, new org.apache.axis2.clientapi.Callback(){
+                   public void onComplete(org.apache.axis2.clientapi.AsyncResult result){
+                         callback.receiveResultechoVoid(result);
+                   }
+                   public void reportError(java.lang.Exception e){
+                         callback.receiveErrorechoVoid(e);
+                   }
+
+              }
+            );
+
+            
+        }
+      
+        /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#echoStringArray
+         *@param param34
+         */
+        public  org.soapinterop.xsd.EchoStringArrayResponseDocument echoStringArray(org.soapinterop.xsd.EchoStringArrayDocument param34) throws java.rmi.RemoteException{
+
+		    org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		    org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+            _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+            org.apache.axis2.soap.SOAPEnvelope env = null;
+            env = createEnvelope();
+            
+                       //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoStringArrayDatabindingSupporter.toOM(param34));
+                      
+             _messageContext.setEnvelope(env);
+             
+             org.apache.axis2.context.MessageContext  _returnMessageContext = _call.invokeBlocking(_operations[1], _messageContext);
+             org.apache.axis2.soap.SOAPEnvelope _returnEnv = _returnMessageContext.getEnvelope();
+             java.lang.Object object = org.soapinterop.databinding.echoStringArrayDatabindingSupporter.fromOM(getElement(_returnEnv,"doc"),org.soapinterop.xsd.EchoStringArrayResponseDocument.class);
+             return (org.soapinterop.xsd.EchoStringArrayResponseDocument)object;
+                 
+
+            
+        }
+        
+         /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#startechoStringArray
+         *@param param34
+         */
+        public  void startechoStringArray(org.soapinterop.xsd.EchoStringArrayDocument param34,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException{
+             org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		     org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+             _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+             org.apache.axis2.soap.SOAPEnvelope env = createEnvelope();
+             
+                         //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoStringArrayDatabindingSupporter.toOM(param34));
+                      
+             _messageContext.setEnvelope(env);
+		      _call.invokeNonBlocking(_operations[1], _messageContext, new org.apache.axis2.clientapi.Callback(){
+                   public void onComplete(org.apache.axis2.clientapi.AsyncResult result){
+                         callback.receiveResultechoStringArray(result);
+                   }
+                   public void reportError(java.lang.Exception e){
+                         callback.receiveErrorechoStringArray(e);
+                   }
+
+              }
+            );
+
+            
+        }
+      
+        /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#echoStruct
+         *@param param36
+         */
+        public  org.soapinterop.xsd.EchoStructResponseDocument echoStruct(org.soapinterop.xsd.EchoStructDocument param36) throws java.rmi.RemoteException{
+
+		    org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		    org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+            _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+            org.apache.axis2.soap.SOAPEnvelope env = null;
+            env = createEnvelope();
+            
+                       //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoStructDatabindingSupporter.toOM(param36));
+                      
+             _messageContext.setEnvelope(env);
+             
+             org.apache.axis2.context.MessageContext  _returnMessageContext = _call.invokeBlocking(_operations[2], _messageContext);
+             org.apache.axis2.soap.SOAPEnvelope _returnEnv = _returnMessageContext.getEnvelope();
+             java.lang.Object object = org.soapinterop.databinding.echoStructDatabindingSupporter.fromOM(getElement(_returnEnv,"doc"),org.soapinterop.xsd.EchoStructResponseDocument.class);
+             return (org.soapinterop.xsd.EchoStructResponseDocument)object;
+                 
+
+            
+        }
+        
+         /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#startechoStruct
+         *@param param36
+         */
+        public  void startechoStruct(org.soapinterop.xsd.EchoStructDocument param36,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException{
+             org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		     org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+             _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+             org.apache.axis2.soap.SOAPEnvelope env = createEnvelope();
+             
+                         //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoStructDatabindingSupporter.toOM(param36));
+                      
+             _messageContext.setEnvelope(env);
+		      _call.invokeNonBlocking(_operations[2], _messageContext, new org.apache.axis2.clientapi.Callback(){
+                   public void onComplete(org.apache.axis2.clientapi.AsyncResult result){
+                         callback.receiveResultechoStruct(result);
+                   }
+                   public void reportError(java.lang.Exception e){
+                         callback.receiveErrorechoStruct(e);
+                   }
+
+              }
+            );
+
+            
+        }
+      
+        /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#echoString
+         *@param param38
+         */
+        public  org.soapinterop.xsd.EchoStringResponseDocument echoString(org.soapinterop.xsd.EchoStringDocument param38) throws java.rmi.RemoteException{
+
+		    org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		    org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+            _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+            org.apache.axis2.soap.SOAPEnvelope env = null;
+            env = createEnvelope();
+            
+                       //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoStringDatabindingSupporter.toOM(param38));
+                      
+             _messageContext.setEnvelope(env);
+             
+             org.apache.axis2.context.MessageContext  _returnMessageContext = _call.invokeBlocking(_operations[3], _messageContext);
+             org.apache.axis2.soap.SOAPEnvelope _returnEnv = _returnMessageContext.getEnvelope();
+             java.lang.Object object = org.soapinterop.databinding.echoStringDatabindingSupporter.fromOM(getElement(_returnEnv,"doc"),org.soapinterop.xsd.EchoStringResponseDocument.class);
+             return (org.soapinterop.xsd.EchoStringResponseDocument)object;
+                 
+
+            
+        }
+        
+         /**
+         * Auto generated method signature
+         * @see org.soapinterop.WSDLInteropTestDocLitPortType#startechoString
+         *@param param38
+         */
+        public  void startechoString(org.soapinterop.xsd.EchoStringDocument param38,final org.soapinterop.WSDLInteropTestDocLitPortTypeCallbackHandler callback) throws java.rmi.RemoteException{
+             org.apache.axis2.clientapi.Call _call = new org.apache.axis2.clientapi.Call(_serviceContext);
+ 		     org.apache.axis2.context.MessageContext _messageContext = getMessageContext();
+             _call.setTo(this.toEPR);
+            _call.setSoapAction("http://soapinterop.org/");
+             org.apache.axis2.soap.SOAPEnvelope env = createEnvelope();
+             
+                         //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoStringDatabindingSupporter.toOM(param38));
+                      
+             _messageContext.setEnvelope(env);
+		      _call.invokeNonBlocking(_operations[3], _messageContext, new org.apache.axis2.clientapi.Callback(){
+                   public void onComplete(org.apache.axis2.clientapi.AsyncResult result){
+                         callback.receiveResultechoString(result);
+                   }
+                   public void reportError(java.lang.Exception e){
+                         callback.receiveErrorechoString(e);
+                   }
+
+              }
+            );
+
+            
+        }
+      
+    }
+    
\ No newline at end of file