You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "Olivier Mengué (JIRA)" <ji...@apache.org> on 2010/02/19 13:19:28 UTC

[jira] Created: (AXIS2C-1453) CDATA is not correctly parsed by guththila

CDATA is not correctly parsed by guththila 
-------------------------------------------

                 Key: AXIS2C-1453
                 URL: https://issues.apache.org/jira/browse/AXIS2C-1453
             Project: Axis2-C
          Issue Type: Bug
          Components: guththila
    Affects Versions: 1.6.0
            Reporter: Olivier Mengué
            Priority: Critical


guththila does not correcly parses <![CDATA[ ... ]]>

Here is the result of axiom_node_create_from_buffer/axiom_note_to_string:
Input: <root><![CDATA[abc&#123;def]]></root>
Result: <root></root>
Expected: <root>abc&amp;#123;def</root>

Input: <root><![CDATA[abc</root>def]]></root>
Result: <root>/root&gt;def]]&gt;</root>
Expected: <root>abc&lt;root&gt;def</root>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.