Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 56298 invoked from network); 3 Feb 2005 03:24:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Feb 2005 03:24:40 -0000 Received: (qmail 39695 invoked by uid 500); 3 Feb 2005 03:24:39 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 39652 invoked by uid 500); 3 Feb 2005 03:24:38 -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 39637 invoked by uid 99); 3 Feb 2005 03:24:38 -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; Wed, 02 Feb 2005 19:24:38 -0800 Received: (qmail 56260 invoked by uid 1203); 3 Feb 2005 03:24:37 -0000 Date: 3 Feb 2005 03:24:37 -0000 Message-ID: <20050203032437.56259.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 SerializationContext.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dims 2005/02/02 19:24:37 Modified: java/src/org/apache/axis/encoding SerializationContext.java Log: Avoid ill formed element-name (fix from jonas team) Revision Changes Path 1.101 +2 -0 ws-axis/java/src/org/apache/axis/encoding/SerializationContext.java Index: SerializationContext.java =================================================================== RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/encoding/SerializationContext.java,v retrieving revision 1.100 retrieving revision 1.101 diff -u -r1.100 -r1.101 --- SerializationContext.java 2 Dec 2004 18:07:14 -0000 1.100 +++ SerializationContext.java 3 Feb 2005 03:24:36 -0000 1.101 @@ -57,6 +57,7 @@ import org.apache.axis.utils.cache.MethodCache; import org.apache.axis.wsdl.symbolTable.SchemaUtils; import org.apache.axis.wsdl.symbolTable.SymbolTable; +import org.apache.axis.wsdl.symbolTable.Utils; import org.apache.commons.logging.Log; import org.w3c.dom.Attr; import org.w3c.dom.CDATASection; @@ -508,6 +509,7 @@ prefix = null; } } + localPart = Utils.getLastLocalPart(localPart); } if (namespaceURI.length() == 0) {