Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 7495 invoked from network); 5 Oct 2007 09:05:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Oct 2007 09:05:36 -0000 Received: (qmail 17147 invoked by uid 500); 5 Oct 2007 09:05:14 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 17024 invoked by uid 500); 5 Oct 2007 09:05:13 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 17013 invoked by uid 500); 5 Oct 2007 09:05:13 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 17010 invoked by uid 99); 5 Oct 2007 09:05:13 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Oct 2007 02:05:13 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Oct 2007 09:05:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4006D1A983A; Fri, 5 Oct 2007 02:05:04 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r582144 - /webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java Date: Fri, 05 Oct 2007 09:05:04 -0000 To: axis2-cvs@ws.apache.org From: amilas@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071005090504.4006D1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: amilas Date: Fri Oct 5 02:05:03 2007 New Revision: 582144 URL: http://svn.apache.org/viewvc?rev=582144&view=rev Log: change the date serialization format Modified: webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java Modified: webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java?rev=582144&r1=582143&r2=582144&view=diff ============================================================================== --- webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java (original) +++ webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java Fri Oct 5 02:05:03 2007 @@ -96,8 +96,7 @@ public static String convertToString(Date value) { // lexical form of the date is '-'? yyyy '-' mm '-' dd zzzzzz? // we have to serialize it with the GMT timezone - SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd'Z'"); - simpleDateFormat.setTimeZone(TimeZone.getTimeZone("GMT")); + SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-ddZ"); return simpleDateFormat.format(value); } --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org