We're currently using a custom xslt file within a BizTalk 2006 (not R2) map
to transform a
message. The xslt works fine, however the output from the map does not
use self-closing xml tags
e.g. an address element:
<Address Type="somedata" Country="moredata" />
is being outputted as
<Address Type="somedata" Country="moredata></Address>
Although the output is valid xml, our customer is insisting
upon the former.
The xslt has been tested in XmlSpy and using Xalan and in both cases the
output is as wanted i.e. using self-closing tags.
Is there a BizTalk or MSXML configuration setting that can be
changed, or an XSLT setting?