You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-dev@ws.apache.org by ow...@apache.org on 2003/03/14 12:49:06 UTC

cvs commit: xml-axis-wsif/java/test/shop ShoppingCartAll.wsdl ShoppingCartTest.java

owenb       2003/03/14 03:49:06

  Modified:    java/test/shop ShoppingCartAll.wsdl ShoppingCartTest.java
  Log:
  Inlcude testinbg updating object by reference using the Java provider
  
  Revision  Changes    Path
  1.6       +1 -0      xml-axis-wsif/java/test/shop/ShoppingCartAll.wsdl
  
  Index: ShoppingCartAll.wsdl
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/test/shop/ShoppingCartAll.wsdl,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ShoppingCartAll.wsdl	13 Dec 2002 17:47:54 -0000	1.5
  +++ ShoppingCartAll.wsdl	14 Mar 2003 11:49:06 -0000	1.6
  @@ -84,6 +84,7 @@
     <part name="itemNumber" type="xsd:string" />
     <part name="itemName" type="xsd:string" />
     <part name="itemQuantity" type="xsd:int" />
  +  <part name="item" type="typens:item" />
    </message>
   
    <message name="AddItemResponseJava">
  
  
  
  1.6       +1 -1      xml-axis-wsif/java/test/shop/ShoppingCartTest.java
  
  Index: ShoppingCartTest.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/test/shop/ShoppingCartTest.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ShoppingCartTest.java	3 Feb 2003 11:59:10 -0000	1.5
  +++ ShoppingCartTest.java	14 Mar 2003 11:49:06 -0000	1.6
  @@ -221,7 +221,7 @@
           inputMessage.setObjectPart("itemNumber", tempString);
   
           item = new Item();
  -        //inputMessage.setObjectPart("item", item);
  +        inputMessage.setObjectPart("item", item);
   
           tempString = "Pocket calculator";
           inputMessage.setObjectPart("itemName", tempString);