Comment nodes are not handled correctly during transformation
-------------------------------------------------------------
Key: AXIS2-4266
URL: https://issues.apache.org/jira/browse/AXIS2-4266
Project: Axis 2.0 (Axis2)
Issue Type: Bug
Components: saaj
Affects Versions: 1.5, nightly
Reporter: Jarek Gawor
Assignee: Jarek Gawor
When using Transformer API to build a SOAP message from DOM with comment nodes
can create an invalid DOM document:
Input:
<root>
<a>
<!-- this is a test with a comment node -->
</a>
</root>
Final (invalid) doc:
<root>
<a>
<!--<!-- this is a test with a comment node -->-->
</a>
</root>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.