Description
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>