<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2806683946392776668</id><updated>2012-02-11T13:08:32.721-08:00</updated><category term='biztalk'/><category term='DMZ and non-DMZ Configuration'/><title type='text'>Biztalk Blog</title><subtitle type='html'>This blog is used to share the experience and knowledge about biztalk and its artifacts (schema, map, bre, orchestration, bam, tpe, bam portal)</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-2215505543401298152</id><published>2010-12-30T18:54:00.000-08:00</published><updated>2010-12-30T19:07:10.541-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DMZ and non-DMZ Configuration'/><category scheme='http://www.blogger.com/atom/ns#' term='biztalk'/><title type='text'>DMZ &amp; non-DMZ Configuration</title><content type='html'>Some companies may not wish to keep biztalk and sql server in DMZ. But they use a lot of http/s,soap adapters to receive the inbound messages. To implement this environment, We need to configure as follows&lt;br /&gt;&lt;ul&gt;&lt;li&gt;a seperate webserver -&gt; DMZ&lt;/li&gt;&lt;li&gt;biztalk server -&gt; non-DMZ&lt;/li&gt;&lt;li&gt;SQL server -&gt;non-DMZ&lt;/li&gt;&lt;li&gt;use WCF or reverse proxy&lt;/li&gt;&lt;/ul&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-2215505543401298152?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/2215505543401298152/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=2215505543401298152' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/2215505543401298152'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/2215505543401298152'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2010/12/dmz-non-dmz-configuration.html' title='DMZ &amp; non-DMZ Configuration'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-7582207107475879051</id><published>2010-04-20T02:10:00.000-07:00</published><updated>2010-04-20T02:15:04.995-07:00</updated><title type='text'>BOM Remover for passthrough receive pipeline</title><content type='html'>If text file has utf-8 signature (BOM), we want to remove that without using disassambler, I used the following code&lt;br /&gt;byte[] buffer = new byte[streamLength];//new byte[originalStrm.Length];&lt;br /&gt;&lt;br /&gt;originalStrm.Read(buffer, 0, Convert.ToInt32(streamLength));&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;byte[] preamble = Encoding.UTF8.GetPreamble();&lt;br /&gt;&lt;br /&gt;//239 187 191&lt;br /&gt;&lt;br /&gt;if (preamble[0] == buffer[0] &amp;amp;&amp;amp; preamble[1] == buffer[1] &amp;amp;&amp;amp; preamble[2] == buffer[2])&lt;br /&gt;{&lt;br /&gt;System.Diagnostics.Trace.WriteLine(" file has utf-8 signature and removed ");&lt;br /&gt;&lt;br /&gt;byte[] bufferN = new byte[streamLength-3];//new&lt;br /&gt;Buffer.BlockCopy(buffer, 3, buffer, 0, streamLength - 3);&lt;br /&gt;buffer = bufferN;&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;System.Diagnostics.Trace.WriteLine(" file does not have utf-8 signature");&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-7582207107475879051?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/7582207107475879051/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=7582207107475879051' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/7582207107475879051'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/7582207107475879051'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2010/04/bom-remover-for-passthrough-receive.html' title='BOM Remover for passthrough receive pipeline'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-1593921583937154695</id><published>2009-09-30T23:56:00.000-07:00</published><updated>2009-10-29T00:45:22.379-07:00</updated><title type='text'>Biztalk consulting &amp; training</title><content type='html'>I am doing the following services &lt;br /&gt;&lt;br /&gt;1.Biztalk consulting (soltution, architect,implementation for enterprise) &lt;br /&gt;2.Biztalk training for indivual as well as corparate&lt;br /&gt;3.Freelance work&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-1593921583937154695?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/1593921583937154695/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=1593921583937154695' title='16 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/1593921583937154695'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/1593921583937154695'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2009/09/biztalk-training.html' title='Biztalk consulting &amp; training'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>16</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-1978206856507285419</id><published>2009-03-04T06:18:00.000-08:00</published><updated>2009-03-04T06:21:09.953-08:00</updated><title type='text'>Updating multiple tables from BizTalk and validating the incoming message in SP</title><content type='html'>Sometimes, we may have the requirements to insert/update more than one table in SQL server from BizTalk using SQL Adapter as well as we have to validate the passing parameter - message in SP before updating database.  This will help us to check the data type as well as data.&lt;br /&gt;&lt;br /&gt;We need to follow the following steps&lt;br /&gt;&lt;br /&gt;Step 1: &lt;br /&gt;Create xml schema collections in SQL 2005&lt;br /&gt;&lt;br /&gt;CREATE XML SCHEMA COLLECTION [dbo].[TableSchema] AS N'&lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;&lt;/xsd:schema&gt;'&lt;br /&gt;&lt;br /&gt;Step 2:&lt;br /&gt;Create the stored procedure as below&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CREATE PROCEDURE [dbo].[iu_Table_sp]&lt;br /&gt;  @xmlTable     AS XML (TableSchema)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-1978206856507285419?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/1978206856507285419/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=1978206856507285419' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/1978206856507285419'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/1978206856507285419'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2009/03/updating-multiple-tables-from-biztalk.html' title='Updating multiple tables from BizTalk and validating the incoming message in SP'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-6738728889600212781</id><published>2009-03-04T05:53:00.000-08:00</published><updated>2009-03-04T06:00:40.700-08:00</updated><title type='text'>Pulling records from SQL data as tree structure (multi-level) xml</title><content type='html'>If you want to create multi level(root -&gt;child record-child record)xml message from SQL for biztalk inbound, then you have to use for xml explicit keyword for t-sql and the example is given below&lt;br /&gt;&lt;br /&gt;SELECT     &lt;br /&gt;   Tag     &lt;br /&gt;   ,Parent    &lt;br /&gt;   ,'Table'      AS [Table!1!sEntity!element]    &lt;br /&gt;   ,sTable_GUID     AS [Table!1!sTable_GUID!element]    &lt;br /&gt;   &lt;br /&gt;   ,sPhone_no    AS [Tablephone!2!sPhone_no!element]     ,sPhoneType_cd     AS [Tablephone!2!sPhoneType_cd!element]    &lt;br /&gt;   ,sAddressType_cd    AS [Tableaddress!3!sAddressType_cd!element]    &lt;br /&gt;   ,sAddress_nm    AS [Tableaddress!3!szAddress_nm!element &lt;br /&gt;  FROM     &lt;br /&gt;   tbTableDetails   &lt;br /&gt;  FOR XML EXPLICIT, BINARY BASE64&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-6738728889600212781?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/6738728889600212781/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=6738728889600212781' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/6738728889600212781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/6738728889600212781'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2009/03/pulling-records-from-sql-data-as-tree.html' title='Pulling records from SQL data as tree structure (multi-level) xml'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-9133556991543741504</id><published>2008-02-16T09:04:00.000-08:00</published><updated>2008-02-16T09:05:32.516-08:00</updated><title type='text'>Finding biztalk installation directory</title><content type='html'>SET BMPATH=&lt;br /&gt;FOR /F "tokens=2* delims=  " %%A IN ('REG QUERY "HKLM\SOFTWARE\Microsoft\BizTalk Server\3.0" /v InstallPath') DO SET BMPATH=%%B&lt;br /&gt;IF "%BMPATH%" EQU "" (&lt;br /&gt; ECHO ERROR Locating the BizTalk Installation directory&lt;br /&gt; ECHO Updates not completed&lt;br /&gt;)&lt;br /&gt;GOTO :EOF&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-9133556991543741504?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/9133556991543741504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=9133556991543741504' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/9133556991543741504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/9133556991543741504'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2008/02/finding-biztalk-installation-directory.html' title='Finding biztalk installation directory'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-6727158844504842893</id><published>2008-01-11T18:59:00.000-08:00</published><updated>2008-01-13T08:27:05.410-08:00</updated><title type='text'>Biztalk Map - Adding (Carriage Return, Line Feed)  / New Line in element</title><content type='html'>&lt;a href="http://2.bp.blogspot.com/_622e6HZxhoY/R4gtjPH_D3I/AAAAAAAAAAc/7gBdmUV1IjI/s1600-h/addingnewline.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_622e6HZxhoY/R4gtjPH_D3I/AAAAAAAAAAc/7gBdmUV1IjI/s320/addingnewline.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5154419856904228722" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We have three fields as address1, address2 and address3 in source schema and in destination side; we want to concatenate them with new line between address1, address2 and address3. if we want newline between data in element, we can achieve it using ASCII to Character functoid with passing input value as 13.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-6727158844504842893?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/6727158844504842893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=6727158844504842893' title='58 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/6727158844504842893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/6727158844504842893'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2008/01/adding-carriage-return-line-feed-new.html' title='Biztalk Map - Adding (Carriage Return, Line Feed)  / New Line in element'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_622e6HZxhoY/R4gtjPH_D3I/AAAAAAAAAAc/7gBdmUV1IjI/s72-c/addingnewline.jpg' height='72' width='72'/><thr:total>58</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-2276951120922865252</id><published>2007-11-15T08:30:00.000-08:00</published><updated>2008-01-13T08:27:48.124-08:00</updated><title type='text'>Biztalk - Sending an email with html tags and non html tags (&lt;, &gt;, &amp;)</title><content type='html'>Sending an email with html tags and non html tags (&lt;, &gt;, &amp;amp;)&lt;br /&gt;&lt;br /&gt;For example, if we want email body output as below&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;a hre=" http://kannannova.blogspot.com/"&gt;click here to see kannannova.blogspot.com&lt;/a&gt;&lt;br /&gt;Thanks &amp;amp; Regards&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;We have to do the following steps for above output&lt;br /&gt;1.Create custom send pipeline with MIME/SMIME encoder&lt;br /&gt;2. Set the part's SetPartProperty as "text/html". If needed, do url encoding too&lt;br /&gt;3.Do html encoding for html tags only&lt;br /&gt;4.Use escape sequence characters for non html tags (&lt; , &gt; ,&amp;amp;)&lt;br /&gt;&lt;'s escape character is &amp;lt; &gt;'s escape character is &amp;gt;&lt;br /&gt;&amp;amp;'s escape character is &amp;amp;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-2276951120922865252?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/2276951120922865252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=2276951120922865252' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/2276951120922865252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/2276951120922865252'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2007/11/sending-email-with-html-tags-and-non.html' title='Biztalk - Sending an email with html tags and non html tags (&lt;, &gt;, &amp;)'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-6209710232831129326</id><published>2007-11-13T12:37:00.001-08:00</published><updated>2007-11-13T12:37:51.390-08:00</updated><title type='text'>Technorati Profile</title><content type='html'>&lt;a href="http://technorati.com/claim/9gppzfndn" rel="me"&gt;Technorati Profile&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-6209710232831129326?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/6209710232831129326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=6209710232831129326' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/6209710232831129326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/6209710232831129326'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2007/11/technorati-profile.html' title='Technorati Profile'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2806683946392776668.post-3520960957852427853</id><published>2007-11-07T10:47:00.000-08:00</published><updated>2007-12-06T07:54:24.882-08:00</updated><title type='text'>Biztalk Cross Reference</title><content type='html'>I created two sample projects ( biztalk and C# winform application ) and Biztalk project has the sample xml data as well. If you want to test these sample, you have to import these xml data into BiztalkMgmtDb using btsxrefimport tool. Then you can test the maps as well as windows application. Cross reference functiods and cross reference API are used when referencing values differ from one system to others. If you want to call api directly without maps, add reference to Microsoft.BizTalk.CrossReferencing.dll, then All database functiods/methods will be available to your class. Sample source code is here &lt;a href="http://cid-ce1e6be7cab35183.skydrive.live.com/self.aspx/biztalk/CrossReferenceSample.zip"&gt;http://cid-ce1e6be7cab35183.skydrive.live.com/self.aspx/biztalk/CrossReferenceSample.zip&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2806683946392776668-3520960957852427853?l=kannannova.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://kannannova.blogspot.com/feeds/3520960957852427853/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2806683946392776668&amp;postID=3520960957852427853' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/3520960957852427853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2806683946392776668/posts/default/3520960957852427853'/><link rel='alternate' type='text/html' href='http://kannannova.blogspot.com/2007/11/biztalk-cross-referece-samples-maps-and.html' title='Biztalk Cross Reference'/><author><name>Kannan Nova</name><uri>http://www.blogger.com/profile/00488285212050976440</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
