[
https://issues.apache.org/jira/browse/JCR-543?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jukka Zitting resolved JCR-543.
-------------------------------
Resolution: Fixed
Fix Version/s: 1.1
> DocViewSAXEventGenerator produces invalid SAX stream
> ----------------------------------------------------
>
> Key: JCR-543
> URL: https://issues.apache.org/jira/browse/JCR-543
> Project: Jackrabbit
> Issue Type: Bug
> Components: xml
> Affects Versions: 1.0.1
> Reporter: Jaka Jaksic
> Assigned To: Stefan Guggisberg
> Fix For: 1.1
>
>
> ISO9075.encode() is called twice in DocViewSAXEventGenerator.leaving(), which
> produces invalid endElement events.
> Faulty block of code (note the encode method called twice):
> // encode node name to make sure it's a valid xml name
> name = ISO9075.encode(name);
> // element name
> String elemName;
> if (node.getDepth() == 0) {
> // root node needs a name
> elemName = jcrRoot;
> } else {
> // encode node name to make sure it's a valid xml name
> elemName = ISO9075.encode(name);
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.