Pretty print encoding format
For readability and debugging, you can specify how to format the target XML message before it is validated.
Select
Compile Options dialog box to use pretty print. This
adds
-F pretty
to the dialog box command line.
For hcixlttest and hcixmltest, use the -l option for pretty print.
Example output:
Current target XML message:
<a><b><c>val</c></b></a>
Pretty-printed target XML message:
<a>
<b>
<c>
val
</c>
</b>
</a>