Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 5802 invoked from network); 19 Jun 2008 18:28:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Jun 2008 18:28:18 -0000 Received: (qmail 36284 invoked by uid 500); 19 Jun 2008 18:28:11 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 36212 invoked by uid 500); 19 Jun 2008 18:28:11 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 36201 invoked by uid 99); 19 Jun 2008 18:28:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jun 2008 11:28:11 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Jun 2008 18:27:29 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 112F8234C150 for ; Thu, 19 Jun 2008 11:27:48 -0700 (PDT) Message-ID: <544555142.1213900068069.JavaMail.jira@brutus> Date: Thu, 19 Jun 2008 11:27:48 -0700 (PDT) From: "Ken Tanaka (JIRA)" To: issues@commons.apache.org Subject: [jira] Commented: (DIGESTER-124) xml attribute values containing "]" character incorrect after 7th occurrence In-Reply-To: <2056480579.1212099825258.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DIGESTER-124?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606492#action_12606492 ] Ken Tanaka commented on DIGESTER-124: ------------------------------------- Simon, I reported this as a bug to Sun on Monday, I don't know how long it takes for them to check the report out. They ([1]IncidentDaemon@sun.com) said: Your report has been assigned an internal review ID of 1274504, which is NOT visible on the Sun Developer Network (SDN). I included the SAX parser test code you sent on to me. Hopefully they will work on this soon. -Ken Simon Kitching (JIRA) wrote: [ [2]https://issues.apache.org/jira/browse/DIGESTER-124?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12605363#action_12605363 ] Simon Kitching commented on DIGESTER-124: ----------------------------------------- That was a suggestion for you, Ken. It's your discovery :-) Feel free to attach the example I wrote. If you can't be bothered, then I might get around to filing this myself. Eventually. But it is no easier for me to raise a bug with Sun than it is for you. xml attribute values containing "]" character incorrect after 7th occurrence ---------------------------------------------------------------------------- Key: DIGESTER-124 URL: [3]https://issues.apache.org/jira/browse/DIGESTER-124 Project: Commons Digester Issue Type: Bug Affects Versions: 1.8 Environment: Red Hat Enterprise Linux Client release 5.1. Linux 2.6.18-53.1.19.el5 #1 SMP Tue Apr 22 03:01:10 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux java jdk1.5.0_11 Reporter: Ken Tanaka Attachments: tryDigesterConfigLimit.tgz, TryParser.java While configuring a program with regex patterns to inventory filenames to a database, I discovered that after 6 attributes containing the "]" character to a single element, the values are not read reliably. this digester_conf.xml results in output (attr7 has attr8 overlaid, attr9 has attr10 overlaid): String set: attr1 =1] attr2 =2] attr3 =3] attr4 =4] attr5 =5] attr6 =6] attr7 =8]!even attr8 =8]! attr9 =te attr10=ten] I used maven 2 to create an executable jar file. The same executable jar run on MacOS 10.4.11, java version "1.5.0_13" gives correct output. This indicates to me that the error may be in some layer lower than digester, but I think it will take a digester developer to isolate the component at fault and file a bug report on the lower level component. -- = Enterprise Data Services Division =============== = [4]Ken.Tanaka@noaa.gov ============================= ---------------------------------------------------------------------------------------- [1] mailto:IncidentDaemon@sun.com [2] https://issues.apache.org/jira/browse/DIGESTER-124?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12605363#action_12605363 [3] https://issues.apache.org/jira/browse/DIGESTER-124 [4] mailto:Ken.Tanaka@noaa.gov > xml attribute values containing "]" character incorrect after 7th occurrence > ---------------------------------------------------------------------------- > > Key: DIGESTER-124 > URL: https://issues.apache.org/jira/browse/DIGESTER-124 > Project: Commons Digester > Issue Type: Bug > Affects Versions: 1.8 > Environment: Red Hat Enterprise Linux Client release 5.1. > Linux 2.6.18-53.1.19.el5 #1 SMP Tue Apr 22 03:01:10 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux > java jdk1.5.0_11 > Reporter: Ken Tanaka > Attachments: tryDigesterConfigLimit.tgz, TryParser.java > > > While configuring a program with regex patterns to inventory filenames to a database, I discovered that after 6 attributes containing the "]" character to a single element, the values are not read reliably. > this digester_conf.xml > > attr1="1]" > attr2="2]" > attr3="3]" > attr4="4]" > attr5="5]" > attr6="6]" > attr7="7]seven" > attr8="8]!" > attr9="9]" > attr10="ten]" > /> > > results in output (attr7 has attr8 overlaid, attr9 has attr10 overlaid): > String set: > attr1 =1] > attr2 =2] > attr3 =3] > attr4 =4] > attr5 =5] > attr6 =6] > attr7 =8]!even > attr8 =8]! > attr9 =te > attr10=ten] > I used maven 2 to create an executable jar file. The same executable jar run on MacOS 10.4.11, java version "1.5.0_13" gives correct output. > This indicates to me that the error may be in some layer lower than digester, but I think it will take a digester developer to isolate the component at fault and file a bug report on the lower level component. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.