You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2002/10/03 02:52:43 UTC

cvs commit: xml-axis/java/test/wsdl/interop4/groupi round4XSD.wsdl Round4XSDTestTestCase.java

dims        2002/10/02 17:52:42

  Modified:    java/test/wsdl/interop4/groupi Tag: interop4 round4XSD.wsdl
                        Round4XSDTestTestCase.java
  Log:
  Reduce errors with WhiteMesa Endpoint.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.3   +1 -0      xml-axis/java/test/wsdl/interop4/groupi/Attic/round4XSD.wsdl
  
  Index: round4XSD.wsdl
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop4/groupi/Attic/round4XSD.wsdl,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- round4XSD.wsdl	2 Oct 2002 22:15:22 -0000	1.1.2.2
  +++ round4XSD.wsdl	3 Oct 2002 00:52:41 -0000	1.1.2.3
  @@ -1105,6 +1105,7 @@
       <documentation>These operations implement DOC/LIT SOAP operations, for interop testing. Please email johnko@microsoft.com with any questions/coments.</documentation>
       <port name="Round4XSDTestSoap" binding="s0:Round4XSDTestSoap">
         <!--
  +      <soap:address location="http://www.whitemesa.net/interop/r4/wsdl-xsd" />
         <soap:address location="http://mssoapinterop.org/asmx/xsd/round4xsd.asmx" />
         -->
         <soap:address location="http://localhost:8080/axis/services/Round4XSDTestSoap" />
  
  
  
  1.1.2.6   +2 -0      xml-axis/java/test/wsdl/interop4/groupi/Attic/Round4XSDTestTestCase.java
  
  Index: Round4XSDTestTestCase.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/interop4/groupi/Attic/Round4XSDTestTestCase.java,v
  retrieving revision 1.1.2.5
  retrieving revision 1.1.2.6
  diff -u -r1.1.2.5 -r1.1.2.6
  --- Round4XSDTestTestCase.java	3 Oct 2002 00:42:26 -0000	1.1.2.5
  +++ Round4XSDTestTestCase.java	3 Oct 2002 00:52:41 -0000	1.1.2.6
  @@ -163,6 +163,7 @@
               test.wsdl.interop4.groupi.xsd.SOAPComplexType input = new test.wsdl.interop4.groupi.xsd.SOAPComplexType();
               input.setVarFloat(1024);
               input.setVarInt(2048);
  +            input.setVarString("Hello World");
               test.wsdl.interop4.groupi.xsd.SOAPComplexType value = binding.echoComplexType(input);
               assertTrue(input.equals(value));
           }
  @@ -273,6 +274,7 @@
               test.wsdl.interop4.groupi.xsd.SOAPComplexType input2 = new test.wsdl.interop4.groupi.xsd.SOAPComplexType();
               input2.setVarFloat(1024);
               input2.setVarInt(2048);
  +            input2.setVarString("Hello World");
               input.setSOAPComplexType(0,input2);
               test.wsdl.interop4.groupi.xsd.SOAPComplexType[] value = null;
               value = binding.echoComplexTypeMultiOccurs(input);