[jbossws-commits] JBossWS SVN: r2811 - in branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429: rpclit_inout and 1 other directory.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Apr 11 18:01:13 EDT 2007


Author: darran.lofthouse at jboss.com
Date: 2007-04-11 18:01:13 -0400 (Wed, 11 Apr 2007)
New Revision: 2811

Added:
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Account.java
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/AccountHolder.java
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Person.java
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook_PortType.java
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/TelephoneNumber.java
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/jaxrpc-mapping.xml
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/wstools-config.xml
Removed:
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpcliteral_inout/
Modified:
   branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook.wsdl
Log:
Completed rpc/literal in-out test.

Copied: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout (from rev 2810, branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpcliteral_inout)

Added: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Account.java
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Account.java	                        (rev 0)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Account.java	2007-04-11 22:01:13 UTC (rev 2811)
@@ -0,0 +1,27 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Wed Apr 11 23:58:44 CEST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws429;
+
+
+public class  Account
+{
+
+protected java.lang.String accountNumber;
+public Account(){}
+
+public Account(java.lang.String accountNumber){
+this.accountNumber=accountNumber;
+}
+public java.lang.String getAccountNumber() { return accountNumber ;}
+
+public void setAccountNumber(java.lang.String accountNumber){ this.accountNumber=accountNumber; }
+
+}


Property changes on: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Account.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/AccountHolder.java
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/AccountHolder.java	                        (rev 0)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/AccountHolder.java	2007-04-11 22:01:13 UTC (rev 2811)
@@ -0,0 +1,28 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Wed Apr 11 23:58:44 CEST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws429;
+
+public class AccountHolder implements javax.xml.rpc.holders.Holder
+{
+
+  public org.jboss.test.ws.jbws429.Account value;
+
+  public AccountHolder()
+  {
+    this.value = new org.jboss.test.ws.jbws429.Account();
+  }
+
+  public AccountHolder(final org.jboss.test.ws.jbws429.Account value)
+  {
+    this.value = value;
+  }
+
+}


Property changes on: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/AccountHolder.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Person.java
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Person.java	                        (rev 0)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Person.java	2007-04-11 22:01:13 UTC (rev 2811)
@@ -0,0 +1,34 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Wed Apr 11 23:58:44 CEST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws429;
+
+
+public class  Person
+{
+
+protected java.lang.String firstName;
+
+protected java.lang.String surname;
+public Person(){}
+
+public Person(java.lang.String firstName, java.lang.String surname){
+this.firstName=firstName;
+this.surname=surname;
+}
+public java.lang.String getFirstName() { return firstName ;}
+
+public void setFirstName(java.lang.String firstName){ this.firstName=firstName; }
+
+public java.lang.String getSurname() { return surname ;}
+
+public void setSurname(java.lang.String surname){ this.surname=surname; }
+
+}


Property changes on: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/Person.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook.wsdl
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpcliteral_inout/PhoneBook.wsdl	2007-04-11 21:35:37 UTC (rev 2810)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook.wsdl	2007-04-11 22:01:13 UTC (rev 2811)
@@ -3,7 +3,7 @@
                               xmlns='http://schemas.xmlsoap.org/wsdl/' 
                               xmlns:ns1='http://test.jboss.org/ws/jbws429/types' 
                               xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' 
-                              xmlns:tns='http://www.jboss.org/support/phonebook' 
+                              xmlns:tns='http://test.jboss.org/ws/jbws429' 
                               xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
                               
  <types xmlns='http://schemas.xmlsoap.org/wsdl/'>
@@ -46,11 +46,12 @@
  </message>
  
  <portType name='PhoneBook' xmlns='http://schemas.xmlsoap.org/wsdl/'>
-  <operation name='lookup' parameterOrder='Person_1' xmlns='http://schemas.xmlsoap.org/wsdl/'>
+  <operation name='lookup' parameterOrder='Person_1 Account' xmlns='http://schemas.xmlsoap.org/wsdl/'>
    <input message='tns:PhoneBook_lookup' xmlns='http://schemas.xmlsoap.org/wsdl/'/>
    <output message='tns:PhoneBook_lookupResponse' xmlns='http://schemas.xmlsoap.org/wsdl/'/>
   </operation>
  </portType>
+ 
  <binding name='PhoneBookBinding' type='tns:PhoneBook' xmlns='http://schemas.xmlsoap.org/wsdl/'>
   <soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http'/>
   <operation name='lookup' xmlns='http://schemas.xmlsoap.org/wsdl/'>

Added: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook_PortType.java
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook_PortType.java	                        (rev 0)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook_PortType.java	2007-04-11 22:01:13 UTC (rev 2811)
@@ -0,0 +1,15 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Wed Apr 11 23:58:44 CEST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+package org.jboss.test.ws.jbws429;
+public interface  PhoneBook_PortType extends java.rmi.Remote
+{
+
+  public org.jboss.test.ws.jbws429.TelephoneNumber  lookup(org.jboss.test.ws.jbws429.Person person_1, org.jboss.test.ws.jbws429.AccountHolder account) throws  java.rmi.RemoteException;
+}


Property changes on: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/PhoneBook_PortType.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/TelephoneNumber.java
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/TelephoneNumber.java	                        (rev 0)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/TelephoneNumber.java	2007-04-11 22:01:13 UTC (rev 2811)
@@ -0,0 +1,34 @@
+/*
+ * JBossWS WS-Tools Generated Source
+ *
+ * Generation Date: Wed Apr 11 23:58:44 CEST 2007
+ *
+ * This generated source code represents a derivative work of the input to
+ * the generator that produced it. Consult the input for the copyright and
+ * terms of use that apply to this source code.
+ */
+
+package org.jboss.test.ws.jbws429;
+
+
+public class  TelephoneNumber
+{
+
+protected java.lang.String areaCode;
+
+protected java.lang.String number;
+public TelephoneNumber(){}
+
+public TelephoneNumber(java.lang.String areaCode, java.lang.String number){
+this.areaCode=areaCode;
+this.number=number;
+}
+public java.lang.String getAreaCode() { return areaCode ;}
+
+public void setAreaCode(java.lang.String areaCode){ this.areaCode=areaCode; }
+
+public java.lang.String getNumber() { return number ;}
+
+public void setNumber(java.lang.String number){ this.number=number; }
+
+}


Property changes on: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/TelephoneNumber.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/jaxrpc-mapping.xml
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/jaxrpc-mapping.xml	                        (rev 0)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/jaxrpc-mapping.xml	2007-04-11 22:01:13 UTC (rev 2811)
@@ -0,0 +1,85 @@
+<?xml version='1.0' encoding='UTF-8'?><java-wsdl-mapping version='1.1' xmlns='http://java.sun.com/xml/ns/j2ee' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://java.sun.com/xml/ns/j2ee http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd'>
+ <package-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+  <package-type xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429</package-type>
+  <namespaceURI xmlns='http://java.sun.com/xml/ns/j2ee'>http://test.jboss.org/ws/jbws429/types</namespaceURI>
+ </package-mapping>
+ <package-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+  <package-type xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429</package-type>
+  <namespaceURI xmlns='http://java.sun.com/xml/ns/j2ee'>http://test.jboss.org/ws/jbws429</namespaceURI>
+ </package-mapping>
+ <java-xml-type-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+  <java-type xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.Person</java-type>
+  <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws429/types' xmlns='http://java.sun.com/xml/ns/j2ee'>typeNS:Person</root-type-qname>
+  <qname-scope xmlns='http://java.sun.com/xml/ns/j2ee'>complexType</qname-scope>
+  <variable-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+   <java-variable-name xmlns='http://java.sun.com/xml/ns/j2ee'>firstName</java-variable-name>
+   <xml-element-name xmlns='http://java.sun.com/xml/ns/j2ee'>firstName</xml-element-name>
+  </variable-mapping>
+  <variable-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+   <java-variable-name xmlns='http://java.sun.com/xml/ns/j2ee'>surname</java-variable-name>
+   <xml-element-name xmlns='http://java.sun.com/xml/ns/j2ee'>surname</xml-element-name>
+  </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+  <java-type xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.Account</java-type>
+  <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws429/types' xmlns='http://java.sun.com/xml/ns/j2ee'>typeNS:Account</root-type-qname>
+  <qname-scope xmlns='http://java.sun.com/xml/ns/j2ee'>complexType</qname-scope>
+  <variable-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+   <java-variable-name xmlns='http://java.sun.com/xml/ns/j2ee'>accountNumber</java-variable-name>
+   <xml-element-name xmlns='http://java.sun.com/xml/ns/j2ee'>accountNumber</xml-element-name>
+  </variable-mapping>
+ </java-xml-type-mapping>
+ <java-xml-type-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+  <java-type xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.TelephoneNumber</java-type>
+  <root-type-qname xmlns:typeNS='http://test.jboss.org/ws/jbws429/types' xmlns='http://java.sun.com/xml/ns/j2ee'>typeNS:TelephoneNumber</root-type-qname>
+  <qname-scope xmlns='http://java.sun.com/xml/ns/j2ee'>complexType</qname-scope>
+  <variable-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+   <java-variable-name xmlns='http://java.sun.com/xml/ns/j2ee'>areaCode</java-variable-name>
+   <xml-element-name xmlns='http://java.sun.com/xml/ns/j2ee'>areaCode</xml-element-name>
+  </variable-mapping>
+  <variable-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+   <java-variable-name xmlns='http://java.sun.com/xml/ns/j2ee'>number</java-variable-name>
+   <xml-element-name xmlns='http://java.sun.com/xml/ns/j2ee'>number</xml-element-name>
+  </variable-mapping>
+ </java-xml-type-mapping>
+ <service-interface-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+  <service-interface xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.PhoneBook_Service</service-interface>
+  <wsdl-service-name xmlns:serviceNS='http://test.jboss.org/ws/jbws429' xmlns='http://java.sun.com/xml/ns/j2ee'>serviceNS:PhoneBook</wsdl-service-name>
+  <port-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+   <port-name xmlns='http://java.sun.com/xml/ns/j2ee'>PhoneBookPort</port-name>
+   <java-port-name xmlns='http://java.sun.com/xml/ns/j2ee'>PhoneBookPort</java-port-name>
+  </port-mapping>
+ </service-interface-mapping>
+ <service-endpoint-interface-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+  <service-endpoint-interface xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.PhoneBook_PortType</service-endpoint-interface>
+  <wsdl-port-type xmlns:portTypeNS='http://test.jboss.org/ws/jbws429' xmlns='http://java.sun.com/xml/ns/j2ee'>portTypeNS:PhoneBook</wsdl-port-type>
+  <wsdl-binding xmlns:bindingNS='http://test.jboss.org/ws/jbws429' xmlns='http://java.sun.com/xml/ns/j2ee'>bindingNS:PhoneBookBinding</wsdl-binding>
+  <service-endpoint-method-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+   <java-method-name xmlns='http://java.sun.com/xml/ns/j2ee'>lookup</java-method-name>
+   <wsdl-operation xmlns='http://java.sun.com/xml/ns/j2ee'>lookup</wsdl-operation>
+   <method-param-parts-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+    <param-position xmlns='http://java.sun.com/xml/ns/j2ee'>0</param-position>
+    <param-type xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.Person</param-type>
+    <wsdl-message-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+     <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws429' xmlns='http://java.sun.com/xml/ns/j2ee'>wsdlMsgNS:PhoneBook_lookup</wsdl-message>
+     <wsdl-message-part-name xmlns='http://java.sun.com/xml/ns/j2ee'>Person_1</wsdl-message-part-name>
+     <parameter-mode xmlns='http://java.sun.com/xml/ns/j2ee'>IN</parameter-mode>
+    </wsdl-message-mapping>
+   </method-param-parts-mapping>
+   <method-param-parts-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+    <param-position xmlns='http://java.sun.com/xml/ns/j2ee'>1</param-position>
+    <param-type xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.Account</param-type>
+    <wsdl-message-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+     <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws429' xmlns='http://java.sun.com/xml/ns/j2ee'>wsdlMsgNS:PhoneBook_lookup</wsdl-message>
+     <wsdl-message-part-name xmlns='http://java.sun.com/xml/ns/j2ee'>Account</wsdl-message-part-name>
+     <parameter-mode xmlns='http://java.sun.com/xml/ns/j2ee'>INOUT</parameter-mode>
+    </wsdl-message-mapping>
+   </method-param-parts-mapping>
+   <wsdl-return-value-mapping xmlns='http://java.sun.com/xml/ns/j2ee'>
+    <method-return-value xmlns='http://java.sun.com/xml/ns/j2ee'>org.jboss.test.ws.jbws429.TelephoneNumber</method-return-value>
+    <wsdl-message xmlns:wsdlMsgNS='http://test.jboss.org/ws/jbws429' xmlns='http://java.sun.com/xml/ns/j2ee'>wsdlMsgNS:PhoneBook_lookupResponse</wsdl-message>
+    <wsdl-message-part-name xmlns='http://java.sun.com/xml/ns/j2ee'>result</wsdl-message-part-name>
+   </wsdl-return-value-mapping>
+  </service-endpoint-method-mapping>
+ </service-endpoint-interface-mapping>
+</java-wsdl-mapping>
\ No newline at end of file


Property changes on: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/jaxrpc-mapping.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/wstools-config.xml
===================================================================
--- branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/wstools-config.xml	                        (rev 0)
+++ branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/wstools-config.xml	2007-04-11 22:01:13 UTC (rev 2811)
@@ -0,0 +1,5 @@
+<configuration>
+  <wsdl-java location="resources/tools/jbws429/rpclit_inout/PhoneBook.wsdl" parameter-style="bare">
+    <mapping file="jaxrpc-mapping.xml"/>
+  </wsdl-java>
+</configuration>


Property changes on: branches/dlofthouse/JBWS-429/jbossws-tests/src/resources/tools/jbws429/rpclit_inout/wstools-config.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbossws-commits mailing list