Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 14736 invoked from network); 19 Oct 2007 08:08:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Oct 2007 08:08:39 -0000 Received: (qmail 78231 invoked by uid 500); 19 Oct 2007 08:08:27 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 77955 invoked by uid 500); 19 Oct 2007 08:08:26 -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 77943 invoked by uid 500); 19 Oct 2007 08:08:26 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 77940 invoked by uid 99); 19 Oct 2007 08:08:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Oct 2007 01:08:26 -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, 19 Oct 2007 08:08:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BBE0E1A9832; Fri, 19 Oct 2007 01:07:47 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r586305 - /webservices/axis2/trunk/java/modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java Date: Fri, 19 Oct 2007 08:07:47 -0000 To: axis2-cvs@ws.apache.org From: amilas@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071019080747.BBE0E1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: amilas Date: Fri Oct 19 01:07:46 2007 New Revision: 586305 URL: http://svn.apache.org/viewvc?rev=586305&view=rev Log: fixed the issue AXIS2_3287 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=586305&r1=586304&r2=586305&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 19 01:07:46 2007 @@ -875,7 +875,7 @@ for (int i = 0; i < listSize; i++) { Object o = objectList.get(i); if (o != null) { - array[i] = Boolean.getBoolean(o.toString()); + array[i] = Boolean.parseBoolean(o.toString()); } } returnArray = array; --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org