You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by bu...@apache.org on 2003/06/04 12:30:25 UTC

DO NOT REPLY [Bug 20472] New: - Output (Traversal) problems bei non-validated (no schema assigned) XML files

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20472>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20472

Output (Traversal) problems bei non-validated (no schema assigned) XML files

           Summary: Output (Traversal) problems bei non-validated (no schema
                    assigned) XML files
           Product: Xerces-C++
           Version: 1.4
          Platform: PC
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: DOM
        AssignedTo: xerces-c-dev@xml.apache.org
        ReportedBy: temporarybobi@yahoo.de


The following problem:
<element>
  <other-element attriv="text1"/>
  <other-element attriv="text2"/>
  <other-element attriv="text3"/>
<element/>

by using xslt transformators from the command lines the output for xml file 
looks like this:
text1
text2
text3

by using the build-in transformator called in a c++ program the output looks 
like following:
text1
text1
text1

if however the xml file is changed to this:
<element>
  <other-element attrib="text1">
    <sth/>
  </other-element>
  <other-element attrib="text2">
    <sth/>
  </other-element>
  <other-element attrib="text3">
    <sth/>
  </other-element>
</element>

The output looks like it is wanted to:
text1
text2
text3

The configuration used is Xalan 1.4/Xerces 2.1

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-c-dev-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-c-dev-help@xml.apache.org