Hmm. The article link doesn’t indicate an error occurred, just that the person wanted to retain the original formatting. Whitespace between elements is not significant for XML parsing. E.g. the following XML snippets are equivalent:
<a><b></b></a>
<a>
<b>
</b>
</a>
Thus if a web service call is failing simply because there is whitespace then that web service is not behaving correctly.
Additionally, whitespace within a tag is significant and must be preserved by a parser.
#soa#API-Management#webMethods