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 [18/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/Compound2/src/Client.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/Client.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/Client.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/Client.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,41 @@
+
+import org.soapinterop.SoapInteropCompound2PortTypeStub;
+import org.soapinterop.person.Person;
+import org.soapinterop.employee.XEmployeeDocument;
+import org.soapinterop.employee.Employee;
+
+/**
+ * Created by IntelliJ IDEA.
+ * User: Administrator
+ * Date: Jul 19, 2005
+ * Time: 9:46:31 AM
+ * To change this template use File | Settings | File Templates.
+ */
+public class Client {
+    public static void main(String[] args) {
+
+        SoapInteropCompound2PortTypeStub stub;
+        try {
+            stub = new SoapInteropCompound2PortTypeStub();
+            XEmployeeDocument reqDoc=XEmployeeDocument.Factory.newInstance();
+            Employee emp=Employee.Factory.newInstance();
+            Person p=Person.Factory.newInstance();
+
+            p.setName("Nadana");
+            p.setMale(false);
+
+            emp.setID(001);
+            emp.setPerson(p);
+            emp.setSalary(20000.00);
+
+            reqDoc.setXEmployee(emp);
+            stub.echoEmployee(reqDoc);
+
+
+
+        } 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/Compound2/src/org/soapinterop/SoapInteropCompound2PortType.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortType.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortType.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortType.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,24 @@
+
+
+    package org.soapinterop;
+
+    /*
+     *  Auto generated java interface by the Axis code generator
+     */
+
+    public interface SoapInteropCompound2PortType {
+     
+        /**
+         * Auto generated method signature 
+         *@param param6
+         */
+        public  org.soapinterop.employee.ResultEmployeeDocument echoEmployee(org.soapinterop.employee.XEmployeeDocument param6) throws java.rmi.RemoteException;
+        
+         /**
+         * Auto generated method signature
+         *@param param6
+         */
+        public  void startechoEmployee(org.soapinterop.employee.XEmployeeDocument param6,final org.soapinterop.SoapInteropCompound2PortTypeCallbackHandler callback) throws java.rmi.RemoteException;
+        
+    }
+    
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeCallbackHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeCallbackHandler.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeCallbackHandler.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeCallbackHandler.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,48 @@
+
+    package org.soapinterop;
+
+    /**
+     *  Auto generated Callback class by the Axis code generator
+     */
+
+    public class SoapInteropCompound2PortTypeCallbackHandler{
+    
+    
+    
+	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 SoapInteropCompound2PortTypeCallbackHandler(Object clientData){
+		this.clientData = clientData;
+	}
+
+
+	
+         /**
+         * auto generated Axis2 call back method for echoEmployee method
+         *
+         */
+        public void receiveResultechoEmployee(org.apache.axis2.clientapi.AsyncResult result) {
+			//Fill here with the code to handle the response
+			
+        }
+
+        /**
+         * auto generated Axis2 Error handler
+         *
+         */
+        public void receiveErrorechoEmployee(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/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeMessageReceiver.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeMessageReceiver.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeMessageReceiver.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,66 @@
+
+	
+    package org.soapinterop;
+
+    /**
+     *  Auto generated message receiver
+     */
+
+    public class SoapInteropCompound2PortTypeMessageReceiver 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);
+           
+            SoapInteropCompound2PortTypeSkeleton skel = (SoapInteropCompound2PortTypeSkeleton)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("echoEmployee")){
+											
+				
+			org.soapinterop.employee.ResultEmployeeDocument param5 = null;
+						
+				//doc style
+					param5 = skel.echoEmployee((org.soapinterop.employee.XEmployeeDocument)org.soapinterop.databinding.echoEmployeeDatabindingSupporter.fromOM((org.apache.axis2.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild().detach(), org.soapinterop.employee.XEmployeeDocument.class));
+						
+					//Create a default envelop
+					envelope = getSOAPFactory().getDefaultEnvelope();
+					//Create a Omelement of the result if a result exist
+					
+					envelope.getBody().setFirstChild(org.soapinterop.databinding.echoEmployeeDatabindingSupporter.toOM(param5));		
+					
+						
+						
+						
+					}
+			   
+			   
+			   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/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeSkeleton.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeSkeleton.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeSkeleton.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeSkeleton.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,24 @@
+
+
+    package org.soapinterop;
+
+    /**
+     *  Auto generated java skeleton for the service by the Axis code generator
+     */
+
+    public class SoapInteropCompound2PortTypeSkeleton {
+       
+
+        /**
+         * Auto generated method signature
+         *@param param0
+         */
+        public  org.soapinterop.employee.ResultEmployeeDocument echoEmployee(org.soapinterop.employee.XEmployeeDocument param0){
+                //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/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeStub.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeStub.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeStub.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/SoapInteropCompound2PortTypeStub.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,111 @@
+
+    package org.soapinterop;
+
+    /*
+     *  Auto generated java implementation by the Axis code generator
+    */
+
+    public class SoapInteropCompound2PortTypeStub extends org.apache.axis2.clientapi.Stub implements SoapInteropCompound2PortType{
+        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/","SoapInteropCompound2PortType"));
+
+           //creating the operations
+           org.apache.axis2.description.OperationDescription __operation;
+           _operations = new org.apache.axis2.description.OperationDescription[1];
+      
+          __operation = new org.apache.axis2.description.OperationDescription();
+          __operation.setName(new javax.xml.namespace.QName("http://soapinterop.org/", "echoEmployee"));
+          _operations[0]=__operation;
+          _service.addOperation(__operation);
+     
+       }
+
+       /**
+        * Constructor
+        */
+        public SoapInteropCompound2PortTypeStub(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 SoapInteropCompound2PortTypeStub() throws java.lang.Exception {
+		   // this(AXIS2_HOME,"http://mssoapinterop.org/stkv3/wsdl/Compound2.wsdl" );
+            this(AXIS2_HOME,"http://localhost:7071/stkv3/wsdl/Compound2.wsdl" );
+	    }
+
+
+
+     
+        /**
+         * Auto generated method signature
+         * @see org.soapinterop.SoapInteropCompound2PortType#echoEmployee
+         *@param param8
+         */
+        public  org.soapinterop.employee.ResultEmployeeDocument echoEmployee(org.soapinterop.employee.XEmployeeDocument param8) 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("#echoEmployee");
+            org.apache.axis2.soap.SOAPEnvelope env = null;
+            env = createEnvelope();
+            
+                       //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoEmployeeDatabindingSupporter.toOM(param8));
+                      
+             _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.echoEmployeeDatabindingSupporter.fromOM(getElement(_returnEnv,"doc"),org.soapinterop.employee.ResultEmployeeDocument.class);
+             return (org.soapinterop.employee.ResultEmployeeDocument)object;
+                 
+
+            
+        }
+        
+         /**
+         * Auto generated method signature
+         * @see org.soapinterop.SoapInteropCompound2PortType#startechoEmployee
+         *@param param8
+         */
+        public  void startechoEmployee(org.soapinterop.employee.XEmployeeDocument param8,final org.soapinterop.SoapInteropCompound2PortTypeCallbackHandler 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("#echoEmployee");
+             org.apache.axis2.soap.SOAPEnvelope env = createEnvelope();
+             
+                         //Style is Doc
+                       setValueDoc(env,org.soapinterop.databinding.echoEmployeeDatabindingSupporter.toOM(param8));
+                      
+             _messageContext.setEnvelope(env);
+		      _call.invokeNonBlocking(_operations[0], _messageContext, new org.apache.axis2.clientapi.Callback(){
+                   public void onComplete(org.apache.axis2.clientapi.AsyncResult result){
+                         callback.receiveResultechoEmployee(result);
+                   }
+                   public void reportError(java.lang.Exception e){
+                         callback.receiveErrorechoEmployee(e);
+                   }
+
+              }
+            );
+
+            
+        }
+      
+    }
+    
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/databinding/echoEmployeeDatabindingSupporter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/databinding/echoEmployeeDatabindingSupporter.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/databinding/echoEmployeeDatabindingSupporter.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/databinding/echoEmployeeDatabindingSupporter.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,79 @@
+
+    package org.soapinterop.databinding;
+
+    /**
+     *  Auto generated supporter class for XML beans by the Axis code generator
+     */
+
+    public class echoEmployeeDatabindingSupporter {
+             
+  
+          public  static org.apache.axis2.om.OMElement  toOM(org.soapinterop.employee.XEmployeeDocument param){
+		    org.apache.axis2.om.impl.llom.builder.StAXOMBuilder builder = org.apache.axis2.om.impl.llom.factory.OMXMLBuilderFactory.createStAXOMBuilder
+            (org.apache.axis2.om.OMAbstractFactory.getOMFactory(),new org.apache.axis2.clientapi.StreamWrapper(param.newXMLStreamReader())) ;
+		    org.apache.axis2.om.OMElement documentElement = builder.getDocumentElement();
+            //Building the element is needed to avoid certain stream errors!
+            documentElement.build();
+            return documentElement;
+          }
+       
+  
+          public  static org.apache.axis2.om.OMElement  toOM(org.soapinterop.employee.ResultEmployeeDocument param){
+		    org.apache.axis2.om.impl.llom.builder.StAXOMBuilder builder = org.apache.axis2.om.impl.llom.factory.OMXMLBuilderFactory.createStAXOMBuilder
+            (org.apache.axis2.om.OMAbstractFactory.getOMFactory(),new org.apache.axis2.clientapi.StreamWrapper(param.newXMLStreamReader())) ;
+		    org.apache.axis2.om.OMElement documentElement = builder.getDocumentElement();
+            //Building the element is needed to avoid certain stream errors!
+            documentElement.build();
+            return documentElement;
+          }
+       
+
+
+          public static org.apache.xmlbeans.XmlObject fromOM(org.apache.axis2.om.OMElement param,
+               java.lang.Class type){
+                try{
+                    
+                    if (org.soapinterop.employee.XEmployeeDocument.class.equals(type)){
+                        return org.soapinterop.employee.XEmployeeDocument.Factory.parse(param.getXMLStreamReader()) ;
+                    }
+                     
+                    if (org.soapinterop.employee.ResultEmployeeDocument.class.equals(type)){
+                        return org.soapinterop.employee.ResultEmployeeDocument.Factory.parse(param.getXMLStreamReader()) ;
+                    }
+                     
+                 }catch(java.lang.Exception e){
+                    throw new RuntimeException("Data binding error",e);
+                }
+             return null;
+          }
+
+        //Generates an empty object for testing
+        // Caution - need some manual editing to work properly
+         public static org.apache.xmlbeans.XmlObject getTestObject(java.lang.Class type){
+                try{
+                   
+                    if (org.soapinterop.employee.XEmployeeDocument.class.equals(type)){
+                        org.soapinterop.employee.XEmployeeDocument emptyObject= org.soapinterop.employee.XEmployeeDocument.Factory.newInstance();
+                        ////////////////////////////////////////////////
+                        // TODO
+                        // Fill in the empty object with necessaey values. Empty XMLBeans objects do not generate proper events
+                        ////////////////////////////////////////////////
+                        return emptyObject;
+                    }
+                     
+                    if (org.soapinterop.employee.ResultEmployeeDocument.class.equals(type)){
+                        org.soapinterop.employee.ResultEmployeeDocument emptyObject= org.soapinterop.employee.ResultEmployeeDocument.Factory.newInstance();
+                        ////////////////////////////////////////////////
+                        // TODO
+                        // Fill in the empty object with necessaey values. Empty XMLBeans objects do not generate proper events
+                        ////////////////////////////////////////////////
+                        return emptyObject;
+                    }
+                     
+                 }catch(java.lang.Exception e){
+                   throw new RuntimeException("Test object creation failure",e);
+                }
+             return null;
+          }
+     }
+    
\ No newline at end of file

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/Employee.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/Employee.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/Employee.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/Employee.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,148 @@
+/*
+ * XML Type:  Employee
+ * Namespace: http://soapinterop.org/employee
+ * Java type: org.soapinterop.employee.Employee
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.employee;
+
+
+/**
+ * An XML Employee(@http://soapinterop.org/employee).
+ *
+ * This is a complex type.
+ */
+public interface Employee extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.foo.TypeSystemHolder.typeSystem.resolveHandle("employee601etype");
+    
+    /**
+     * Gets the "person" element
+     */
+    org.soapinterop.person.Person getPerson();
+    
+    /**
+     * Sets the "person" element
+     */
+    void setPerson(org.soapinterop.person.Person person);
+    
+    /**
+     * Appends and returns a new empty "person" element
+     */
+    org.soapinterop.person.Person addNewPerson();
+    
+    /**
+     * Gets the "salary" element
+     */
+    double getSalary();
+    
+    /**
+     * Gets (as xml) the "salary" element
+     */
+    org.apache.xmlbeans.XmlDouble xgetSalary();
+    
+    /**
+     * Sets the "salary" element
+     */
+    void setSalary(double salary);
+    
+    /**
+     * Sets (as xml) the "salary" element
+     */
+    void xsetSalary(org.apache.xmlbeans.XmlDouble salary);
+    
+    /**
+     * Gets the "ID" element
+     */
+    int getID();
+    
+    /**
+     * Gets (as xml) the "ID" element
+     */
+    org.apache.xmlbeans.XmlInt xgetID();
+    
+    /**
+     * Sets the "ID" element
+     */
+    void setID(int id);
+    
+    /**
+     * Sets (as xml) the "ID" element
+     */
+    void xsetID(org.apache.xmlbeans.XmlInt id);
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.soapinterop.employee.Employee newInstance() {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.soapinterop.employee.Employee newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.soapinterop.employee.Employee parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.soapinterop.employee.Employee parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.soapinterop.employee.Employee parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.soapinterop.employee.Employee parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.soapinterop.employee.Employee parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.soapinterop.employee.Employee parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.employee.Employee) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/ResultEmployeeDocument.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/ResultEmployeeDocument.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/ResultEmployeeDocument.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/ResultEmployeeDocument.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: result_Employee
+ * Namespace: http://soapinterop.org/employee
+ * Java type: org.soapinterop.employee.ResultEmployeeDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.employee;
+
+
+/**
+ * A document containing one result_Employee(@http://soapinterop.org/employee) element.
+ *
+ * This is a complex type.
+ */
+public interface ResultEmployeeDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.foo.TypeSystemHolder.typeSystem.resolveHandle("resultemployee5efedoctype");
+    
+    /**
+     * Gets the "result_Employee" element
+     */
+    org.soapinterop.employee.Employee getResultEmployee();
+    
+    /**
+     * Sets the "result_Employee" element
+     */
+    void setResultEmployee(org.soapinterop.employee.Employee resultEmployee);
+    
+    /**
+     * Appends and returns a new empty "result_Employee" element
+     */
+    org.soapinterop.employee.Employee addNewResultEmployee();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.soapinterop.employee.ResultEmployeeDocument newInstance() {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.soapinterop.employee.ResultEmployeeDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.employee.ResultEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/XEmployeeDocument.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/XEmployeeDocument.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/XEmployeeDocument.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/XEmployeeDocument.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,109 @@
+/*
+ * An XML document type.
+ * Localname: x_Employee
+ * Namespace: http://soapinterop.org/employee
+ * Java type: org.soapinterop.employee.XEmployeeDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.employee;
+
+
+/**
+ * A document containing one x_Employee(@http://soapinterop.org/employee) element.
+ *
+ * This is a complex type.
+ */
+public interface XEmployeeDocument extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.foo.TypeSystemHolder.typeSystem.resolveHandle("xemployeeefd5doctype");
+    
+    /**
+     * Gets the "x_Employee" element
+     */
+    org.soapinterop.employee.Employee getXEmployee();
+    
+    /**
+     * Sets the "x_Employee" element
+     */
+    void setXEmployee(org.soapinterop.employee.Employee xEmployee);
+    
+    /**
+     * Appends and returns a new empty "x_Employee" element
+     */
+    org.soapinterop.employee.Employee addNewXEmployee();
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.soapinterop.employee.XEmployeeDocument newInstance() {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.soapinterop.employee.XEmployeeDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.employee.XEmployeeDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/EmployeeImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/EmployeeImpl.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/EmployeeImpl.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/EmployeeImpl.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,215 @@
+/*
+ * XML Type:  Employee
+ * Namespace: http://soapinterop.org/employee
+ * Java type: org.soapinterop.employee.Employee
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.employee.impl;
+/**
+ * An XML Employee(@http://soapinterop.org/employee).
+ *
+ * This is a complex type.
+ */
+public class EmployeeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.soapinterop.employee.Employee
+{
+    
+    public EmployeeImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName PERSON$0 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/employee", "person");
+    private static final javax.xml.namespace.QName SALARY$2 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/employee", "salary");
+    private static final javax.xml.namespace.QName ID$4 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/employee", "ID");
+    
+    
+    /**
+     * Gets the "person" element
+     */
+    public org.soapinterop.person.Person getPerson()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.person.Person target = null;
+            target = (org.soapinterop.person.Person)get_store().find_element_user(PERSON$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "person" element
+     */
+    public void setPerson(org.soapinterop.person.Person person)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.person.Person target = null;
+            target = (org.soapinterop.person.Person)get_store().find_element_user(PERSON$0, 0);
+            if (target == null)
+            {
+                target = (org.soapinterop.person.Person)get_store().add_element_user(PERSON$0);
+            }
+            target.set(person);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "person" element
+     */
+    public org.soapinterop.person.Person addNewPerson()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.person.Person target = null;
+            target = (org.soapinterop.person.Person)get_store().add_element_user(PERSON$0);
+            return target;
+        }
+    }
+    
+    /**
+     * Gets the "salary" element
+     */
+    public double getSalary()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SALARY$2, 0);
+            if (target == null)
+            {
+                return 0.0;
+            }
+            return target.getDoubleValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "salary" element
+     */
+    public org.apache.xmlbeans.XmlDouble xgetSalary()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlDouble target = null;
+            target = (org.apache.xmlbeans.XmlDouble)get_store().find_element_user(SALARY$2, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "salary" element
+     */
+    public void setSalary(double salary)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(SALARY$2, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(SALARY$2);
+            }
+            target.setDoubleValue(salary);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "salary" element
+     */
+    public void xsetSalary(org.apache.xmlbeans.XmlDouble salary)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlDouble target = null;
+            target = (org.apache.xmlbeans.XmlDouble)get_store().find_element_user(SALARY$2, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlDouble)get_store().add_element_user(SALARY$2);
+            }
+            target.set(salary);
+        }
+    }
+    
+    /**
+     * Gets the "ID" element
+     */
+    public int getID()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ID$4, 0);
+            if (target == null)
+            {
+                return 0;
+            }
+            return target.getIntValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "ID" element
+     */
+    public org.apache.xmlbeans.XmlInt xgetID()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlInt target = null;
+            target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(ID$4, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "ID" element
+     */
+    public void setID(int id)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(ID$4, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(ID$4);
+            }
+            target.setIntValue(id);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "ID" element
+     */
+    public void xsetID(org.apache.xmlbeans.XmlInt id)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlInt target = null;
+            target = (org.apache.xmlbeans.XmlInt)get_store().find_element_user(ID$4, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlInt)get_store().add_element_user(ID$4);
+            }
+            target.set(id);
+        }
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/ResultEmployeeDocumentImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/ResultEmployeeDocumentImpl.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/ResultEmployeeDocumentImpl.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/ResultEmployeeDocumentImpl.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: result_Employee
+ * Namespace: http://soapinterop.org/employee
+ * Java type: org.soapinterop.employee.ResultEmployeeDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.employee.impl;
+/**
+ * A document containing one result_Employee(@http://soapinterop.org/employee) element.
+ *
+ * This is a complex type.
+ */
+public class ResultEmployeeDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.soapinterop.employee.ResultEmployeeDocument
+{
+    
+    public ResultEmployeeDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName RESULTEMPLOYEE$0 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/employee", "result_Employee");
+    
+    
+    /**
+     * Gets the "result_Employee" element
+     */
+    public org.soapinterop.employee.Employee getResultEmployee()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.employee.Employee target = null;
+            target = (org.soapinterop.employee.Employee)get_store().find_element_user(RESULTEMPLOYEE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "result_Employee" element
+     */
+    public void setResultEmployee(org.soapinterop.employee.Employee resultEmployee)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.employee.Employee target = null;
+            target = (org.soapinterop.employee.Employee)get_store().find_element_user(RESULTEMPLOYEE$0, 0);
+            if (target == null)
+            {
+                target = (org.soapinterop.employee.Employee)get_store().add_element_user(RESULTEMPLOYEE$0);
+            }
+            target.set(resultEmployee);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "result_Employee" element
+     */
+    public org.soapinterop.employee.Employee addNewResultEmployee()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.employee.Employee target = null;
+            target = (org.soapinterop.employee.Employee)get_store().add_element_user(RESULTEMPLOYEE$0);
+            return target;
+        }
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/XEmployeeDocumentImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/XEmployeeDocumentImpl.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/XEmployeeDocumentImpl.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/employee/impl/XEmployeeDocumentImpl.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,76 @@
+/*
+ * An XML document type.
+ * Localname: x_Employee
+ * Namespace: http://soapinterop.org/employee
+ * Java type: org.soapinterop.employee.XEmployeeDocument
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.employee.impl;
+/**
+ * A document containing one x_Employee(@http://soapinterop.org/employee) element.
+ *
+ * This is a complex type.
+ */
+public class XEmployeeDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.soapinterop.employee.XEmployeeDocument
+{
+    
+    public XEmployeeDocumentImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName XEMPLOYEE$0 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/employee", "x_Employee");
+    
+    
+    /**
+     * Gets the "x_Employee" element
+     */
+    public org.soapinterop.employee.Employee getXEmployee()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.employee.Employee target = null;
+            target = (org.soapinterop.employee.Employee)get_store().find_element_user(XEMPLOYEE$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "x_Employee" element
+     */
+    public void setXEmployee(org.soapinterop.employee.Employee xEmployee)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.employee.Employee target = null;
+            target = (org.soapinterop.employee.Employee)get_store().find_element_user(XEMPLOYEE$0, 0);
+            if (target == null)
+            {
+                target = (org.soapinterop.employee.Employee)get_store().add_element_user(XEMPLOYEE$0);
+            }
+            target.set(xEmployee);
+        }
+    }
+    
+    /**
+     * Appends and returns a new empty "x_Employee" element
+     */
+    public org.soapinterop.employee.Employee addNewXEmployee()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.soapinterop.employee.Employee target = null;
+            target = (org.soapinterop.employee.Employee)get_store().add_element_user(XEMPLOYEE$0);
+            return target;
+        }
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/Person.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/Person.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/Person.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/Person.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,133 @@
+/*
+ * XML Type:  Person
+ * Namespace: http://soapinterop.org/person
+ * Java type: org.soapinterop.person.Person
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.person;
+
+
+/**
+ * An XML Person(@http://soapinterop.org/person).
+ *
+ * This is a complex type.
+ */
+public interface Person extends org.apache.xmlbeans.XmlObject
+{
+    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schema.system.foo.TypeSystemHolder.typeSystem.resolveHandle("person656ctype");
+    
+    /**
+     * Gets the "Name" element
+     */
+    java.lang.String getName();
+    
+    /**
+     * Gets (as xml) the "Name" element
+     */
+    org.apache.xmlbeans.XmlString xgetName();
+    
+    /**
+     * Sets the "Name" element
+     */
+    void setName(java.lang.String name);
+    
+    /**
+     * Sets (as xml) the "Name" element
+     */
+    void xsetName(org.apache.xmlbeans.XmlString name);
+    
+    /**
+     * Gets the "Male" element
+     */
+    boolean getMale();
+    
+    /**
+     * Gets (as xml) the "Male" element
+     */
+    org.apache.xmlbeans.XmlBoolean xgetMale();
+    
+    /**
+     * Sets the "Male" element
+     */
+    void setMale(boolean male);
+    
+    /**
+     * Sets (as xml) the "Male" element
+     */
+    void xsetMale(org.apache.xmlbeans.XmlBoolean male);
+    
+    /**
+     * A factory class with static methods for creating instances
+     * of this type.
+     */
+    
+    public static final class Factory
+    {
+        public static org.soapinterop.person.Person newInstance() {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
+        
+        public static org.soapinterop.person.Person newInstance(org.apache.xmlbeans.XmlOptions options) {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
+        
+        /** @param xmlAsString the string value to parse */
+        public static org.soapinterop.person.Person parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
+        
+        /** @param file the file from which to load an xml document */
+        public static org.soapinterop.person.Person parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
+        
+        public static org.soapinterop.person.Person parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
+        
+        public static org.soapinterop.person.Person parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
+        
+        public static org.soapinterop.person.Person parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
+        
+        public static org.soapinterop.person.Person parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
+        
+        public static org.soapinterop.person.Person parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
+        
+        public static org.soapinterop.person.Person parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
+        
+        public static org.soapinterop.person.Person parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return (org.soapinterop.person.Person) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
+        
+        /** @deprecated {@link XMLInputStream} */
+        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
+          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
+        
+        private Factory() { } // No instance of this class allowed
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/impl/PersonImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/impl/PersonImpl.java?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/impl/PersonImpl.java (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/person/impl/PersonImpl.java Mon Aug  1 20:09:56 2005
@@ -0,0 +1,163 @@
+/*
+ * XML Type:  Person
+ * Namespace: http://soapinterop.org/person
+ * Java type: org.soapinterop.person.Person
+ *
+ * Automatically generated - do not modify.
+ */
+package org.soapinterop.person.impl;
+/**
+ * An XML Person(@http://soapinterop.org/person).
+ *
+ * This is a complex type.
+ */
+public class PersonImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.soapinterop.person.Person
+{
+    
+    public PersonImpl(org.apache.xmlbeans.SchemaType sType)
+    {
+        super(sType);
+    }
+    
+    private static final javax.xml.namespace.QName NAME$0 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/person", "Name");
+    private static final javax.xml.namespace.QName MALE$2 = 
+        new javax.xml.namespace.QName("http://soapinterop.org/person", "Male");
+    
+    
+    /**
+     * Gets the "Name" element
+     */
+    public java.lang.String getName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(NAME$0, 0);
+            if (target == null)
+            {
+                return null;
+            }
+            return target.getStringValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "Name" element
+     */
+    public org.apache.xmlbeans.XmlString xgetName()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(NAME$0, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Name" element
+     */
+    public void setName(java.lang.String name)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(NAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(NAME$0);
+            }
+            target.setStringValue(name);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "Name" element
+     */
+    public void xsetName(org.apache.xmlbeans.XmlString name)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlString target = null;
+            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(NAME$0, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(NAME$0);
+            }
+            target.set(name);
+        }
+    }
+    
+    /**
+     * Gets the "Male" element
+     */
+    public boolean getMale()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MALE$2, 0);
+            if (target == null)
+            {
+                return false;
+            }
+            return target.getBooleanValue();
+        }
+    }
+    
+    /**
+     * Gets (as xml) the "Male" element
+     */
+    public org.apache.xmlbeans.XmlBoolean xgetMale()
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlBoolean target = null;
+            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(MALE$2, 0);
+            return target;
+        }
+    }
+    
+    /**
+     * Sets the "Male" element
+     */
+    public void setMale(boolean male)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.SimpleValue target = null;
+            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(MALE$2, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(MALE$2);
+            }
+            target.setBooleanValue(male);
+        }
+    }
+    
+    /**
+     * Sets (as xml) the "Male" element
+     */
+    public void xsetMale(org.apache.xmlbeans.XmlBoolean male)
+    {
+        synchronized (monitor())
+        {
+            check_orphaned();
+            org.apache.xmlbeans.XmlBoolean target = null;
+            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_element_user(MALE$2, 0);
+            if (target == null)
+            {
+                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_element_user(MALE$2);
+            }
+            target.set(male);
+        }
+    }
+}

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/service.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/service.xml?rev=226931&view=auto
==============================================================================
--- webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/service.xml (added)
+++ webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/org/soapinterop/service.xml Mon Aug  1 20:09:56 2005
@@ -0,0 +1,8 @@
+<!--Auto generated Axis Service XML-->
+<service name="SoapInteropCompound2PortType">
+<parameter locked="xsd:false" name="ServiceClass">org.soapinterop.SoapInteropCompound2PortTypeSkeleton</parameter>
+<!--Mounting the method echoEmployee-->
+<operation name="echoEmployee">
+<messageReceiver class="org.soapinterop.SoapInteropCompound2PortTypeMessageReceiver"/>
+</operation>
+</service>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/schema/system/foo/TypeSystemHolder.class
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/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/Compound2/src/schema/system/foo/TypeSystemHolder.class
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

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

Added: webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/src/schema/system/foo/index.xsb
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/archive/java/scratch/Nadana/WS-Interop/Round3/Compound2/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/Compound2/src/schema/system/foo/index.xsb
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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

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

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

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

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

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

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

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

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

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