This problem occurs if an element that is represented in
minimized tag syntax (also known as a self-terminating element) contains the
promoted attributes. For example, the following code sample contains a
self-terminating element:
<root>
<record name="Bob" />
</root>
If the name attribute in the schema that you deploy to BizTalk Server is a promoted
property, BizTalk Server does not promote the content of this element when BizTalk Server processes the element through the receive pipeline. However, if the data is represented in a
paired element tag, the property promotion works as expected. For example, the following code sample contains a paired element tag:
<root>
<record name="Bob"></record>
</root>