Return-Path: X-Original-To: apmail-axis-java-dev-archive@www.apache.org Delivered-To: apmail-axis-java-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3087D5A76 for ; Tue, 10 May 2011 07:09:51 +0000 (UTC) Received: (qmail 53517 invoked by uid 500); 10 May 2011 07:09:47 -0000 Delivered-To: apmail-axis-java-dev-archive@axis.apache.org Received: (qmail 52663 invoked by uid 500); 10 May 2011 07:09:45 -0000 Mailing-List: contact java-dev-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@axis.apache.org Delivered-To: mailing list java-dev@axis.apache.org Received: (qmail 52655 invoked by uid 99); 10 May 2011 07:09:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 May 2011 07:09:42 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [195.114.18.135] (HELO smtp1.ispfr.net) (195.114.18.135) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 May 2011 07:09:35 +0000 Received: by smtp1.ispfr.net (Postfix, from userid 500) id 36C59332894; Tue, 10 May 2011 09:09:13 +0200 (CEST) Received: from smtp1.ispfr.net (smtp1.ispfr.net [195.114.18.135]) by smtp1.ispfr.net (Postfix) with ESMTP id 2F15F33288F for ; Tue, 10 May 2011 09:09:13 +0200 (CEST) Received: (qmail 27143 invoked by uid 89); 10 May 2011 07:09:12 -0000 Received: from effisoft-liege-60-174.cnt.nerim.net (HELO ?127.0.0.1?) (pserenne@projescience.com@213.215.60.174) by smtp1.ispfr.net with ESMTPA; 10 May 2011 07:09:12 -0000 Message-ID: <4DC8E497.5060501@projescience.com> Date: Tue, 10 May 2011 09:09:11 +0200 From: philippe Serenne User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; fr; rv:1.9.2.17) Gecko/20110414 Thunderbird/3.1.10 MIME-Version: 1.0 To: java-dev@axis.apache.org Subject: JIRA 4036 BigDecimal to xs:decimal References: <177910231.30338.1304784723207.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <177910231.30338.1304784723207.JavaMail.tomcat@hel.zones.apache.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 110509-1, 09/05/2011), Outbound message X-Antivirus-Status: Clean Hello all I just wanted to bring you what I think to be the bug solution on JIRA 4036 as the commited source on Mai 09 doesn't solve the problemn of the decimal conversion The issue is the the convertToString methods have diffrenet prototype (object, Byte, int, ...) but no prototype taking a BigDecimal as argument. So The bug is solved by adding a method with the right signature : public static String convertToString(BigDecimal o) { return o.toPlainString(); } I did it, regenerate the adb jar, it works, but it could be nice for me if the next release can integrate it.. Best regards Philippe -- --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org For additional commands, e-mail: java-dev-help@axis.apache.org