Sorting, Grouping, and Debatching Using BizTalk Messaging
Posted by: Stephen W. Thomas,
on 03 Apr 2006 |
View original | Bookmarked: 0 time(s)
In a past edition of The BizTalker, I talked about how easy it is to use custom XSLT inside the BizTalk Mapper to sort data. Sorting data inside the map can be doing using inline XSLT like this:
<xsl:for-each select="Record">
<xsl:sort select="Id" data-type="number" order="ascending"/>
<xsl:element name="Customers">
<xsl:element name="Id"><xsl:value-of select="Id" /></xsl:element>
</xsl:element>
</xsl:for-each>
Sometimes sorting...