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 Tom Jordahl <to...@macromedia.com> on 2002/10/03 14:55:52 UTC

RE: cvs commit: xml-axis/java/test/wsdl/interop4/groupi Round4XSD TestTestCase.java

Dims,

This is going to be a great help.
Thanks for this effort!

(We are really going to welcome your help at the interop next week, which I assume you wouldn't dream of missing since you work/live right down the road. :-)


--
Tom Jordahl
Macromedia Server Development



-----Original Message-----
From: dims@apache.org [mailto:dims@apache.org]
Sent: Wednesday, October 02, 2002 8:42 PM
To: xml-axis-cvs@apache.org
Subject: cvs commit: xml-axis/java/test/wsdl/interop4/groupi
Round4XSDTestTestCase.java


dims        2002/10/02 17:42:26

  Modified:    java/test/wsdl/interop4/groupi Tag: interop4
                        Round4XSDTestTestCase.java
  Log:
  Force GMT on return calendar before checking if input/output are equal. Now testcase work both with our endpoint and MSFT's endpoint.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.5   +1 -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.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- Round4XSDTestTestCase.java	3 Oct 2002 00:28:03 -0000	1.1.2.4
  +++ Round4XSDTestTestCase.java	3 Oct 2002 00:42:26 -0000	1.1.2.5
  @@ -139,6 +139,7 @@
               input.setTimeZone(TimeZone.getTimeZone("GMT"));
               java.util.Calendar value = null;
               value = binding.echoDate(input);
  +            value.setTimeZone(TimeZone.getTimeZone("GMT"));
               assertTrue(input.equals(value));
           }
           catch (java.rmi.RemoteException re) {