Home Page › Forums › BizTalk 2004 – BizTalk 2010 › send/receive xml message question › Re: send/receive xml message question
But how about mapping:
<?xml version=”1.0″ encoding=”utf-8″?>
<ArrayOfItem xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns:xsd=”http://www.w3.org/2001/XMLSchema“>
<Item xsi:type=”CD”>
<ProductName>Iron Maiden</ProductName>
<ProductPrice>99</ProductPrice>
<ProductNumber>1</ProductNumber>
<ProductCount>6</ProductCount>
</Item>
</ArrayOfItem>
to:
<?xml version=”1.0″ ?>
<Inventory>
<Item>
<Name>South of Heaven</Name>
<Count>666</Count>
<Price>66,6</Price>
<Comment>Varldens basta skiva</Comment>
<Artist>Slayer</Artist>
<Publisher>Def Jam</Publisher>
<Genre>Metal</Genre>
<Year>1986</Year>
<ProductID>666</ProductID>
</Item>
</Inventory>
Is it still necessary with an envelope schema?