Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 34928 invoked from network); 27 Feb 2006 16:59:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Feb 2006 16:59:02 -0000 Received: (qmail 74179 invoked by uid 500); 27 Feb 2006 16:58:19 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 74053 invoked by uid 500); 27 Feb 2006 16:58:19 -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 74023 invoked by uid 99); 27 Feb 2006 16:58:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Feb 2006 08:58:18 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 27 Feb 2006 08:58:18 -0800 Received: (qmail 34294 invoked by uid 65534); 27 Feb 2006 16:57:39 -0000 Message-ID: <20060227165739.34285.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r381381 - /webservices/axis/trunk/c/src/soap/xsd/NOTATION.cpp Date: Mon, 27 Feb 2006 16:57:37 -0000 To: axis-cvs@ws.apache.org From: dicka@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dicka Date: Mon Feb 27 08:57:35 2006 New Revision: 381381 URL: http://svn.apache.org/viewcvs?rev=381381&view=rev Log: Correct problem with xsd:NOTATION serialization. The whitespace constraint has been mistakenly set to replace, when it should be preserve. Modified: webservices/axis/trunk/c/src/soap/xsd/NOTATION.cpp Modified: webservices/axis/trunk/c/src/soap/xsd/NOTATION.cpp URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/soap/xsd/NOTATION.cpp?rev=381381&r1=381380&r2=381381&view=diff ============================================================================== --- webservices/axis/trunk/c/src/soap/xsd/NOTATION.cpp (original) +++ webservices/axis/trunk/c/src/soap/xsd/NOTATION.cpp Mon Feb 27 08:57:35 2006 @@ -136,7 +136,7 @@ WhiteSpace* NOTATION::getWhiteSpace() { - return new WhiteSpace(REPLACE); + return new WhiteSpace(PRESERVE); } MinLength* NOTATION::getMinLength()