Skip to main content

Posts

Showing posts from 2015

BizTalk Map incoming Message to Single Output field - XSLT template

BizTalk Transformation : Map Incoming XML Message  to Single output field as string To map incoming message to single out field, we will use xstl template in map. 1. Drag and drop Custom Scripting Functoid on your Map 2.Select  Inline XSLT Call Template. 3. Copy and Paste the following xslt code in "Inline Script" Section < xsl:template name = "called-template" > < xsl:param name = "param1" /> < xsl:element name = "DestinationField" namespace = "http://myschema.namespace.com/" > < xsl:text disable-output-escaping = "yes" >&lt;![CDATA[</xsl:text> < xsl:call-template name = "identity" /> < xsl:text disable-output-escaping = "yes" >]]&gt;</xsl:text> </ xsl:element > </ xsl:template > <xsl:template name="identity" match="@*|node()"> <xsl:copy> <xsl:apply-templ

Optimizing Pipeline Performance - Biztalk Pipeline

Optimizing Pipeline Performance - Biztalk Pipeline A really helpful artical on improving BizTalk Pipeline component performance http://msdn.microsoft.com/en-us/library/ee377071(v=bts.70).aspx What to use inside the pipelne component  Should we use XMLDocument or XMLReader in the pipeline component. working with Virtual Stream. Using AddResourceTracker  pContext.ResourceTracker.AddResource(messageData); http://msdn.microsoft.com/en-us/library/ee377071(v=bts.70).aspx