<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Dealing with base64 encoded XML documents in BizTalk</title>
	<atom:link href="http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/feed/" rel="self" type="application/rss+xml" />
	<link>http://biztalkmessages.vansplunteren.net</link>
	<description>Randal van Splunteren&#039;s experiences with BizTalk Server and other MS technologies.</description>
	<lastBuildDate>Fri, 03 Feb 2012 14:47:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: repattila</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-2438</link>
		<dc:creator><![CDATA[repattila]]></dc:creator>
		<pubDate>Thu, 25 Aug 2011 16:43:56 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-2438</guid>
		<description><![CDATA[BizTalk 2010 Install dir/Pipeline Components i mean.]]></description>
		<content:encoded><![CDATA[<p>BizTalk 2010 Install dir/Pipeline Components i mean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: repattila</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-2437</link>
		<dc:creator><![CDATA[repattila]]></dc:creator>
		<pubDate>Thu, 25 Aug 2011 16:42:30 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-2437</guid>
		<description><![CDATA[Thank you for this great sample.

I just got it working under BizTalk 2010, just a minor thing, the pipeline components dlls are supposed to be copied to /Pipeline Components, and don&#039;t need to be gaced.]]></description>
		<content:encoded><![CDATA[<p>Thank you for this great sample.</p>
<p>I just got it working under BizTalk 2010, just a minor thing, the pipeline components dlls are supposed to be copied to /Pipeline Components, and don&#8217;t need to be gaced.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randal van Splunteren</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1823</link>
		<dc:creator><![CDATA[Randal van Splunteren]]></dc:creator>
		<pubDate>Tue, 26 Apr 2011 09:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1823</guid>
		<description><![CDATA[Hi,

You can find my e-mail address on the about page of this blog.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You can find my e-mail address on the about page of this blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abir</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1819</link>
		<dc:creator><![CDATA[Abir]]></dc:creator>
		<pubDate>Mon, 25 Apr 2011 16:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1819</guid>
		<description><![CDATA[Hi Randel,
          What is your email id? Now i managed to get past the error. But i have a new issue. I need to read the file name from a element in the xml containing emebedded document. I am able to do so succesfully.However the filename node is also getting removed. 
Is there a way of reading but not removing the node.I think read element as string is moving the reader and hence the element is getting removed. I think one way of getting around is using an overwridden XMLtranslator class as you have shown earlier. Any other way you can suggest.I am pasting my code snippet.Thanks in advance.

   public override bool Read()
        {
            Boolean result = wrappedReader.Read();
            //Abir&#039;s new code
            if(wrappedReader.IsStartElement() &amp;&amp; wrappedReader.LocalName == &quot;FileName&quot;)
            {
                //filename =
                wrappedReader.ReadStartElement();
                
                this.documentFilePath = @&quot;C:\Projects\LEMA\POC\SchemaExtractor\Docs\&quot; + wrappedReader.Value;
                
                result = wrappedReader.Read();
                wrappedReader.ReadEndElement();
                
            }
              

            if(wrappedReader.IsStartElement() &amp;&amp; wrappedReader.LocalName == nodeNameOfEncodedFileContents)
            {
                if(wrappedReader.IsEmptyElement)
                {
                    wrappedReader.Read();
                }
                else
                {
                    Base64DecodeDocument(wrappedReader);
                }
            }

            return result;
        }]]></description>
		<content:encoded><![CDATA[<p>Hi Randel,<br />
          What is your email id? Now i managed to get past the error. But i have a new issue. I need to read the file name from a element in the xml containing emebedded document. I am able to do so succesfully.However the filename node is also getting removed.<br />
Is there a way of reading but not removing the node.I think read element as string is moving the reader and hence the element is getting removed. I think one way of getting around is using an overwridden XMLtranslator class as you have shown earlier. Any other way you can suggest.I am pasting my code snippet.Thanks in advance.</p>
<p>   public override bool Read()<br />
        {<br />
            Boolean result = wrappedReader.Read();<br />
            //Abir&#8217;s new code<br />
            if(wrappedReader.IsStartElement() &amp;&amp; wrappedReader.LocalName == &#8220;FileName&#8221;)<br />
            {<br />
                //filename =<br />
                wrappedReader.ReadStartElement();</p>
<p>                this.documentFilePath = @&#8221;C:\Projects\LEMA\POC\SchemaExtractor\Docs\&#8221; + wrappedReader.Value;</p>
<p>                result = wrappedReader.Read();<br />
                wrappedReader.ReadEndElement();</p>
<p>            }</p>
<p>            if(wrappedReader.IsStartElement() &amp;&amp; wrappedReader.LocalName == nodeNameOfEncodedFileContents)<br />
            {<br />
                if(wrappedReader.IsEmptyElement)<br />
                {<br />
                    wrappedReader.Read();<br />
                }<br />
                else<br />
                {<br />
                    Base64DecodeDocument(wrappedReader);<br />
                }<br />
            }</p>
<p>            return result;<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randal van Splunteren</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1807</link>
		<dc:creator><![CDATA[Randal van Splunteren]]></dc:creator>
		<pubDate>Fri, 22 Apr 2011 09:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1807</guid>
		<description><![CDATA[Hi,

If you want you can send me your sample solution that depicts you problem. So I can look at it. If you do please make sure everything is included binding files, sample message, etc.
Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>If you want you can send me your sample solution that depicts you problem. So I can look at it. If you do please make sure everything is included binding files, sample message, etc.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abir</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1797</link>
		<dc:creator><![CDATA[Abir]]></dc:creator>
		<pubDate>Wed, 20 Apr 2011 12:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1797</guid>
		<description><![CDATA[Hi Randel,
           I tried your example and it worked well. I tweaked the source code to strip out multiple documents. The pipleine works but I aget an error saying the the root document tag is not closed. If I look into the message from the Biztalk Admin console I can see the whole message but the document content node is not stripped off. In teh receive side which code are you using to change the message body that is to delete the document node. Many thanks in advance and thanks for writing a great article.]]></description>
		<content:encoded><![CDATA[<p>Hi Randel,<br />
           I tried your example and it worked well. I tweaked the source code to strip out multiple documents. The pipleine works but I aget an error saying the the root document tag is not closed. If I look into the message from the Biztalk Admin console I can see the whole message but the document content node is not stripped off. In teh receive side which code are you using to change the message body that is to delete the document node. Many thanks in advance and thanks for writing a great article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1588</link>
		<dc:creator><![CDATA[Dale]]></dc:creator>
		<pubDate>Thu, 03 Mar 2011 00:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1588</guid>
		<description><![CDATA[Hi, great sample.

I used the sample as is with no orchestration in the middle. It worked fine. I then added an orchestration subscribing to a receive port. I get the following error:
The published message could not be routed because no subscribers were found. This error occurs if the subscribing orchestration or send port has not been enlisted, or if some of the message properties necessary for subscription evaluation have not been promoted.

Everything is enlisted and I have tight bound the Orchestration receive port.

Any clues, it seems to me like all the relevant promoted properties are not coming through.]]></description>
		<content:encoded><![CDATA[<p>Hi, great sample.</p>
<p>I used the sample as is with no orchestration in the middle. It worked fine. I then added an orchestration subscribing to a receive port. I get the following error:<br />
The published message could not be routed because no subscribers were found. This error occurs if the subscribing orchestration or send port has not been enlisted, or if some of the message properties necessary for subscription evaluation have not been promoted.</p>
<p>Everything is enlisted and I have tight bound the Orchestration receive port.</p>
<p>Any clues, it seems to me like all the relevant promoted properties are not coming through.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randal van Splunteren</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1486</link>
		<dc:creator><![CDATA[Randal van Splunteren]]></dc:creator>
		<pubDate>Thu, 10 Feb 2011 10:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1486</guid>
		<description><![CDATA[Hi Chris,

Can you mail me your pipeline code along with a test message so I can have a look. It has been some time since I wrote this so I have to dig into it again. 

Thanks!]]></description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>Can you mail me your pipeline code along with a test message so I can have a look. It has been some time since I wrote this so I have to dig into it again. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1483</link>
		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Wed, 09 Feb 2011 16:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1483</guid>
		<description><![CDATA[Hi Randal.

Thanks very much for this, it is very interesting and educational.  I learned a lot.  I modified the send pipeline a little, so  that it checks for certain elements and then uses the filename in the element and replaces the element contents with the base64 encoded file. It works very well.

However, now I want to do the reverse on the receiving side.  My problem is that my messages have many elements containing base64 encoded data. I need to be able to check for certain elements that contain the base64 encoded data and at that point, decode it and save it to file, and replace the base64 data with the filename of the file I have just created from it.  I almost have it working. A series of files are extracted and stored. The problem I need to solve is that the output message has the elements that used to contain the base64 data absent. I think this is because I have called ReadElementContentsAsBase64. It seems to consume both the start and end elements. I wonder if I need to combine the subclassed XmlReader with the subclassed XmlTranslatorStream in the same component perhaps?

I wondered if you had any ideas?

Thanks again for the excellent article.

Chris]]></description>
		<content:encoded><![CDATA[<p>Hi Randal.</p>
<p>Thanks very much for this, it is very interesting and educational.  I learned a lot.  I modified the send pipeline a little, so  that it checks for certain elements and then uses the filename in the element and replaces the element contents with the base64 encoded file. It works very well.</p>
<p>However, now I want to do the reverse on the receiving side.  My problem is that my messages have many elements containing base64 encoded data. I need to be able to check for certain elements that contain the base64 encoded data and at that point, decode it and save it to file, and replace the base64 data with the filename of the file I have just created from it.  I almost have it working. A series of files are extracted and stored. The problem I need to solve is that the output message has the elements that used to contain the base64 data absent. I think this is because I have called ReadElementContentsAsBase64. It seems to consume both the start and end elements. I wonder if I need to combine the subclassed XmlReader with the subclassed XmlTranslatorStream in the same component perhaps?</p>
<p>I wondered if you had any ideas?</p>
<p>Thanks again for the excellent article.</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nilesh</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1018</link>
		<dc:creator><![CDATA[nilesh]]></dc:creator>
		<pubDate>Tue, 30 Nov 2010 09:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1018</guid>
		<description><![CDATA[Hi Randal,

As Far I understood the pipline properties I have stated them as below

Receive Pipline Side:
ContextKeyForDocumentFilePath: StoredFile (What does this property mean)
ContextNameForDocumentFilePath (This can be any random namespace or it shoul be namespace as per my incomming message)
DocumentFilePath:(Path where I want the encoded content to be moved to)
NodeNameOfEncodedFileContent: (Node which I want to strip off)

Send Pipline Side:
ElementToCreateName: (Node name to create which holds my endoded data)
ElementToCreateNamespace: (What Should go here)
ElementToCreatePrefix: (What Should go here)
FilePathPropertyName: (This can be any random namespace or it shoul be namespace as per my incomming message)
FilePathPropertyNamespace :(Element after which I put in my encoded data)

Kindly correct me if I am  wrong on this understanding.

Thanks and Regards,
Nilesh.]]></description>
		<content:encoded><![CDATA[<p>Hi Randal,</p>
<p>As Far I understood the pipline properties I have stated them as below</p>
<p>Receive Pipline Side:<br />
ContextKeyForDocumentFilePath: StoredFile (What does this property mean)<br />
ContextNameForDocumentFilePath (This can be any random namespace or it shoul be namespace as per my incomming message)<br />
DocumentFilePath:(Path where I want the encoded content to be moved to)<br />
NodeNameOfEncodedFileContent: (Node which I want to strip off)</p>
<p>Send Pipline Side:<br />
ElementToCreateName: (Node name to create which holds my endoded data)<br />
ElementToCreateNamespace: (What Should go here)<br />
ElementToCreatePrefix: (What Should go here)<br />
FilePathPropertyName: (This can be any random namespace or it shoul be namespace as per my incomming message)<br />
FilePathPropertyNamespace <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> Element after which I put in my encoded data)</p>
<p>Kindly correct me if I am  wrong on this understanding.</p>
<p>Thanks and Regards,<br />
Nilesh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randal van Splunteren</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1017</link>
		<dc:creator><![CDATA[Randal van Splunteren]]></dc:creator>
		<pubDate>Tue, 30 Nov 2010 09:09:46 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1017</guid>
		<description><![CDATA[Hi Nilesh,

In the properties of the pipeline (component) you need to fill in the path where the base64 encoded part (in this case the .pdf) will be stored. It probably does not have a value set now.]]></description>
		<content:encoded><![CDATA[<p>Hi Nilesh,</p>
<p>In the properties of the pipeline (component) you need to fill in the path where the base64 encoded part (in this case the .pdf) will be stored. It probably does not have a value set now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nilesh</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1016</link>
		<dc:creator><![CDATA[nilesh]]></dc:creator>
		<pubDate>Tue, 30 Nov 2010 06:49:27 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1016</guid>
		<description><![CDATA[Hi Randal,

Glad that u replied.
Yes I used the sample as downloaded. The MSI file worked for me but when I Build and deployed the sample solution it threw the above error. My guess is that some environment variable might be missing missing. Are u setting any environment variable in the MSI file. 
Also can I get your emailid so that I can mail u my solution. The only changed I made were, setting the pipeline properties. 

Thanks and Regards,
Nilesh.]]></description>
		<content:encoded><![CDATA[<p>Hi Randal,</p>
<p>Glad that u replied.<br />
Yes I used the sample as downloaded. The MSI file worked for me but when I Build and deployed the sample solution it threw the above error. My guess is that some environment variable might be missing missing. Are u setting any environment variable in the MSI file.<br />
Also can I get your emailid so that I can mail u my solution. The only changed I made were, setting the pipeline properties. </p>
<p>Thanks and Regards,<br />
Nilesh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nilesh</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-1014</link>
		<dc:creator><![CDATA[Nilesh]]></dc:creator>
		<pubDate>Mon, 29 Nov 2010 12:27:07 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-1014</guid>
		<description><![CDATA[Hi I downloaded msi file and deployed it and it ran well. But when I am building the solution and deploying it I am getting following error

-----------------------------------------------------
There was a failure executing the receive pipeline: &quot;Pipelines.ReceiveImage, Pipelines, Version=1.0.0.0, Culture=neutral, PublicKeyToken=45277a3280164770&quot; Source: &quot;Pipeline &quot; Receive Port: &quot;ReceivePort1&quot; URI: &quot;C:\Sample.Pipelines\in\*.xml&quot; Reason: Path cannot be null.
Parameter name: path
---------------------------------------------------

I am not able to unserstand where the parameter gets passed.

Thanks and Regards,
Nilesh.]]></description>
		<content:encoded><![CDATA[<p>Hi I downloaded msi file and deployed it and it ran well. But when I am building the solution and deploying it I am getting following error</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
There was a failure executing the receive pipeline: &#8220;Pipelines.ReceiveImage, Pipelines, Version=1.0.0.0, Culture=neutral, PublicKeyToken=45277a3280164770&#8243; Source: &#8220;Pipeline &#8221; Receive Port: &#8220;ReceivePort1&#8243; URI: &#8220;C:\Sample.Pipelines\in\*.xml&#8221; Reason: Path cannot be null.<br />
Parameter name: path<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>I am not able to unserstand where the parameter gets passed.</p>
<p>Thanks and Regards,<br />
Nilesh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Processing 64bit encoded biztalk messages &#171; Ravindar, .Net, Biztalk developer</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-402</link>
		<dc:creator><![CDATA[Processing 64bit encoded biztalk messages &#171; Ravindar, .Net, Biztalk developer]]></dc:creator>
		<pubDate>Thu, 13 May 2010 06:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-402</guid>
		<description><![CDATA[[...] Processing 64bit encoded biztalk&#160;messages By ravindarjobs  http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Processing 64bit encoded biztalk&nbsp;messages By ravindarjobs  <a href="http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/" rel="nofollow">http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randal van Splunteren</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-205</link>
		<dc:creator><![CDATA[Randal van Splunteren]]></dc:creator>
		<pubDate>Thu, 22 Oct 2009 18:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-205</guid>
		<description><![CDATA[Hi,

Thanks for your comment.

Are you using the sample as downloaded? Or did you make any modifications? If so please .zip and mail me your modified sample so I can take a look (also include the binding file).

Thanks and Regards,

Randal]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for your comment.</p>
<p>Are you using the sample as downloaded? Or did you make any modifications? If so please .zip and mail me your modified sample so I can take a look (also include the binding file).</p>
<p>Thanks and Regards,</p>
<p>Randal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FieldFlower</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-204</link>
		<dc:creator><![CDATA[FieldFlower]]></dc:creator>
		<pubDate>Thu, 22 Oct 2009 16:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-204</guid>
		<description><![CDATA[Tried your example, with pdf, but got an error:
&quot;Exception: Parameter is not valid.&quot;
Got this error in the Receive Port.
Any ideas?]]></description>
		<content:encoded><![CDATA[<p>Tried your example, with pdf, but got an error:<br />
&#8220;Exception: Parameter is not valid.&#8221;<br />
Got this error in the Receive Port.<br />
Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RajaKumaravel</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-190</link>
		<dc:creator><![CDATA[RajaKumaravel]]></dc:creator>
		<pubDate>Fri, 09 Oct 2009 12:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-190</guid>
		<description><![CDATA[Randal,
I&#039;m having binding failure when i import. 

The following items could not be matched up to hosts due to name and/or trust level mismatches: 
Item: &#039;FILE&#039; Host: &#039;BizTalkSendHost&#039; Trust level: &#039;Untrusted&#039;
You must do one of the following:
1) Create hosts with these names and trust levels and try again
2) Re-export the MSI without the binding files and have a post import script apply a suitable binding file. (Microsoft.BizTalk.Deployment)

Here i created BizTalkSendHost with untrusted but still no success. so i started to create manually the receive and send port. 

Now i am having the below issue. Could you help me if time permits for you. I verified the path and also XmlStoreAndRemove.btp which is  
C:\Sample.Pipelines\Temp\Document_%Guid%.pdf


There was a failure executing the receive pipeline: &quot;Sample.Pipelines.XmlStoreAndRemove, Sample.Pipelines, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6e8722a4213dc18d&quot; Source: &quot;Pipeline &quot; Receive Port: &quot;ReceivePort_Base64&quot; URI: &quot;C:\Sample.Pipelines\In\*.xml&quot; Reason: Path cannot be null.
Parameter name: path

Thanks,
Raja]]></description>
		<content:encoded><![CDATA[<p>Randal,<br />
I&#8217;m having binding failure when i import. </p>
<p>The following items could not be matched up to hosts due to name and/or trust level mismatches:<br />
Item: &#8216;FILE&#8217; Host: &#8216;BizTalkSendHost&#8217; Trust level: &#8216;Untrusted&#8217;<br />
You must do one of the following:<br />
1) Create hosts with these names and trust levels and try again<br />
2) Re-export the MSI without the binding files and have a post import script apply a suitable binding file. (Microsoft.BizTalk.Deployment)</p>
<p>Here i created BizTalkSendHost with untrusted but still no success. so i started to create manually the receive and send port. </p>
<p>Now i am having the below issue. Could you help me if time permits for you. I verified the path and also XmlStoreAndRemove.btp which is<br />
C:\Sample.Pipelines\Temp\Document_%Guid%.pdf</p>
<p>There was a failure executing the receive pipeline: &#8220;Sample.Pipelines.XmlStoreAndRemove, Sample.Pipelines, Version=1.0.0.0, Culture=neutral, PublicKeyToken=6e8722a4213dc18d&#8221; Source: &#8220;Pipeline &#8221; Receive Port: &#8220;ReceivePort_Base64&#8243; URI: &#8220;C:\Sample.Pipelines\In\*.xml&#8221; Reason: Path cannot be null.<br />
Parameter name: path</p>
<p>Thanks,<br />
Raja</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randal van Splunteren</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-56</link>
		<dc:creator><![CDATA[Randal van Splunteren]]></dc:creator>
		<pubDate>Thu, 12 Mar 2009 07:50:52 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-56</guid>
		<description><![CDATA[Hi,

I tried to download and unzip the .zip file myself. Seems ok from this side. I&#039;ll mail you the .zip file anyway.

Regards,

Randal]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I tried to download and unzip the .zip file myself. Seems ok from this side. I&#8217;ll mail you the .zip file anyway.</p>
<p>Regards,</p>
<p>Randal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shoukat</title>
		<link>http://biztalkmessages.vansplunteren.net/articles/dealing-with-base64/#comment-55</link>
		<dc:creator><![CDATA[Shoukat]]></dc:creator>
		<pubDate>Wed, 11 Mar 2009 16:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://biztalkmessages.wordpress.com/?page_id=109#comment-55</guid>
		<description><![CDATA[The sample .zip file is broken. Can you please send me the sample file or upload the correct one]]></description>
		<content:encoded><![CDATA[<p>The sample .zip file is broken. Can you please send me the sample file or upload the correct one</p>
]]></content:encoded>
	</item>
</channel>
</rss>

