You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@ws.apache.org by ru...@apache.org on 2002/01/30 18:27:24 UTC

cvs commit: xml-soap/java/samples/interop EchoTestClient.java

rubys       02/01/30 09:27:24

  Modified:    java/samples/interop EchoTestClient.java
  Log:
  The ArrayOfSOAPStruct type is defined in the wsdl file
  http://www.whitemesa.com/interop/InteropTest.wsdl
  
  Submitted by:	Edoardo Comar <ed...@capeclear.com>
  
  Revision  Changes    Path
  1.16      +3 -0      xml-soap/java/samples/interop/EchoTestClient.java
  
  Index: EchoTestClient.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/interop/EchoTestClient.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- EchoTestClient.java	9 Dec 2001 23:19:36 -0000	1.15
  +++ EchoTestClient.java	30 Jan 2002 17:27:24 -0000	1.16
  @@ -190,6 +190,9 @@
                         new Data(2, "duet", (float)2.22),
                         new Data(1, "un", (float)1.1)}, null);
       smr.mapTypes(Constants.NS_URI_SOAP_ENC, new QName("", "return"), null, null, arraySer);
  +    smr.mapTypes(Constants.NS_URI_SOAP_ENC,
  +        new QName(OBJECT_URI, "ArrayOfSOAPStruct"),
  +        Data[].class, arraySer, arraySer);
       doCall(url, "echoStructArray", p);		
   
       doCall(url, "echoVoid", null);