Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 69673 invoked from network); 28 Jan 2005 21:47:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 28 Jan 2005 21:47:29 -0000 Received: (qmail 37493 invoked by uid 500); 28 Jan 2005 21:47:28 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 37452 invoked by uid 500); 28 Jan 2005 21:47:28 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 37437 invoked by uid 99); 28 Jan 2005 21:47:27 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 28 Jan 2005 13:47:27 -0800 Received: (qmail 69624 invoked by uid 1203); 28 Jan 2005 21:47:26 -0000 Date: 28 Jan 2005 21:47:26 -0000 Message-ID: <20050128214726.69623.qmail@minotaur.apache.org> From: dims@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/java/src/org/apache/axis/encoding DefaultJAXRPC11TypeMappingImpl.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dims 2005/01/28 13:47:26 Modified: java/src/org/apache/axis/encoding DefaultJAXRPC11TypeMappingImpl.java Log: Change the order of registering the typemapping. Revision Changes Path 1.4 +2 -2 ws-axis/java/src/org/apache/axis/encoding/DefaultJAXRPC11TypeMappingImpl.java Index: DefaultJAXRPC11TypeMappingImpl.java =================================================================== RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/encoding/DefaultJAXRPC11TypeMappingImpl.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- DefaultJAXRPC11TypeMappingImpl.java 28 Jan 2005 20:11:11 -0000 1.3 +++ DefaultJAXRPC11TypeMappingImpl.java 28 Jan 2005 21:47:26 -0000 1.4 @@ -53,10 +53,10 @@ */ private void registerXSDTypes() { // Table 4-1 of the JAXRPC 1.1 spec - myRegisterSimple(Constants.XSD_UNSIGNEDINT, long.class); myRegisterSimple(Constants.XSD_UNSIGNEDINT, Long.class); - myRegisterSimple(Constants.XSD_UNSIGNEDSHORT, int.class); + myRegisterSimple(Constants.XSD_UNSIGNEDINT, long.class); myRegisterSimple(Constants.XSD_UNSIGNEDSHORT, Integer.class); + myRegisterSimple(Constants.XSD_UNSIGNEDSHORT, int.class); myRegisterSimple(Constants.XSD_UNSIGNEDBYTE, short.class); myRegisterSimple(Constants.XSD_UNSIGNEDBYTE, Short.class); myRegister(Constants.XSD_DATETIME, java.util.Calendar.class,