<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>John Glisson&#039;s Blog</title>
	<atom:link href="http://jglisson73.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jglisson73.wordpress.com</link>
	<description>Geeky stuff...</description>
	<lastBuildDate>Wed, 31 Aug 2011 13:07:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jglisson73.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>John Glisson&#039;s Blog</title>
		<link>http://jglisson73.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jglisson73.wordpress.com/osd.xml" title="John Glisson&#039;s Blog" />
	<atom:link rel='hub' href='http://jglisson73.wordpress.com/?pushpress=hub'/>
		<item>
		<title>XSLT String Padding</title>
		<link>http://jglisson73.wordpress.com/2011/08/05/xslt-string-padding/</link>
		<comments>http://jglisson73.wordpress.com/2011/08/05/xslt-string-padding/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 16:29:48 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=269</guid>
		<description><![CDATA[I had the need to pad values in a xsl template from a BizTalk map. These helpful call templates did the trick: http://www.dpawson.co.uk/xsl/sect2/padding.html &#60;xsl:template name=&#8221;prepend-pad&#8221;&#62; &#60;!&#8211; recursive template to right justify and prepend&#8211;&#62; &#60;!&#8211; the value with whatever padChar is passed in   &#8211;&#62; &#60;xsl:param name=&#8221;padChar&#8221;/&#62; &#60;xsl:param name=&#8221;padVar&#8221;/&#62; &#60;xsl:param name=&#8221;length&#8221;/&#62; &#60;xsl:choose&#62; &#60;xsl:when test=&#8221;string-length($padVar) &#38;lt; $length&#8221;&#62; &#60;xsl:call-template [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=269&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had the need to pad values in a xsl template from a BizTalk map. These helpful call templates did the trick:</p>
<p><a href="http://www.dpawson.co.uk/xsl/sect2/padding.html" target="_blank">http://www.dpawson.co.uk/xsl/sect2/padding.html</a></p>
<p>&lt;xsl:template name=&#8221;prepend-pad&#8221;&gt;<br />
&lt;!&#8211; recursive template to right justify and prepend&#8211;&gt;<br />
&lt;!&#8211; the value with whatever padChar is passed in   &#8211;&gt;<br />
&lt;xsl:param name=&#8221;padChar&#8221;/&gt;<br />
&lt;xsl:param name=&#8221;padVar&#8221;/&gt;<br />
&lt;xsl:param name=&#8221;length&#8221;/&gt;<br />
&lt;xsl:choose&gt;<br />
&lt;xsl:when test=&#8221;string-length($padVar) &amp;lt; $length&#8221;&gt;<br />
&lt;xsl:call-template name=&#8221;prepend-pad&#8221;&gt;<br />
&lt;xsl:with-param name=&#8221;padChar&#8221; select=&#8221;$padChar&#8221;/&gt;<br />
&lt;xsl:with-param name=&#8221;padVar&#8221; select=&#8221;concat($padChar,$padVar)&#8221;/&gt;<br />
&lt;xsl:with-param name=&#8221;length&#8221; select=&#8221;$length&#8221;/&gt;<br />
&lt;/xsl:call-template&gt;<br />
&lt;/xsl:when&gt;<br />
&lt;xsl:otherwise&gt;<br />
&lt;xsl:value-of select=&#8221;substring($padVar,string-length($padVar) -<br />
$length + 1)&#8221;/&gt;<br />
&lt;/xsl:otherwise&gt;<br />
&lt;/xsl:choose&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template name=&#8221;append-pad&#8221;&gt;<br />
&lt;!&#8211; recursive template to left justify and append  &#8211;&gt;<br />
&lt;!&#8211; the value with whatever padChar is passed in   &#8211;&gt;<br />
&lt;xsl:param name=&#8221;padChar&#8221;/&gt;<br />
&lt;xsl:param name=&#8221;padVar&#8221;/&gt;<br />
&lt;xsl:param name=&#8221;length&#8221;/&gt;<br />
&lt;xsl:choose&gt;<br />
&lt;xsl:when test=&#8221;string-length($padVar) &amp;lt; $length&#8221;&gt;<br />
&lt;xsl:call-template name=&#8221;append-pad&#8221;&gt;<br />
&lt;xsl:with-param name=&#8221;padChar&#8221; select=&#8221;$padChar&#8221;/&gt;<br />
&lt;xsl:with-param name=&#8221;padVar&#8221; select=&#8221;concat($padVar,$padChar)&#8221;/&gt;<br />
&lt;xsl:with-param name=&#8221;length&#8221; select=&#8221;$length&#8221;/&gt;<br />
&lt;/xsl:call-template&gt;<br />
&lt;/xsl:when&gt;<br />
&lt;xsl:otherwise&gt;<br />
&lt;xsl:value-of select=&#8221;substring($padVar,1,$length)&#8221;/&gt;<br />
&lt;/xsl:otherwise&gt;<br />
&lt;/xsl:choose&gt;<br />
&lt;/xsl:template&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/269/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/269/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/269/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=269&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/08/05/xslt-string-padding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>ESB WCF Pipeline Error</title>
		<link>http://jglisson73.wordpress.com/2011/06/02/esb-wcf-pipeline-error/</link>
		<comments>http://jglisson73.wordpress.com/2011/06/02/esb-wcf-pipeline-error/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 13:46:09 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>
		<category><![CDATA[ESB]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=262</guid>
		<description><![CDATA[I was receiving a very troubling error message when trying to submit a message to the ESB Bus through the ESB.ItineraryServices.WCF/ProcessItinerary.svc service. ItinerarySelectReceiveXml &#8211; Verify the schema for this document specification is deployed and is in the Global Assembly Cache. I thought I was going to have to reinstall the ESB Toolkit. It turns out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=262&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was receiving a very troubling error message when trying to submit a message to the ESB Bus through the ESB.ItineraryServices.WCF/ProcessItinerary.svc service.</p>
<blockquote><p>ItinerarySelectReceiveXml &#8211; Verify the schema for this document specification is deployed and is in the Global Assembly Cache.</p></blockquote>
<p>I thought I was going to have to reinstall the ESB Toolkit. It turns out all I needed to do was change the IIS Application Pool the WCF website was running on from .NET 2.0 to .NET 4.0. Apparently it was looking for the assembly in the 2.0 GAC rather than the 4.0 GAC.</p>
<p>Thanks to <a href="http://int.social.msdn.microsoft.com/Forums/en-IE/biztalkesb/thread/a3079846-7222-465b-96a7-636ea7491032" target="_blank">this forum thread</a> for the solution!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/262/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=262&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/06/02/esb-wcf-pipeline-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>Using a Transform in an ESB Itinerary After a Flat File Disassembler</title>
		<link>http://jglisson73.wordpress.com/2011/05/25/using-a-transform-after-a-flat-file-disassembler-in-an-esb-itinerary/</link>
		<comments>http://jglisson73.wordpress.com/2011/05/25/using-a-transform-after-a-flat-file-disassembler-in-an-esb-itinerary/#comments</comments>
		<pubDate>Wed, 25 May 2011 12:39:43 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>
		<category><![CDATA[ESB]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=257</guid>
		<description><![CDATA[That subject is a mouthful! This is a situation I was having and was resolved using this technique… When parsing a flat-file, then applying a transform (map) to it in an itinerary, I was consistently getting an error message: Description: There was a failure executing the receive pipeline Reason: Cannot access a disposed object. Object [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=257&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>That subject is a mouthful!</p>
<p>This is a situation I was having and was resolved using <a href="http://social.msdn.microsoft.com/Forums/en-AU/biztalkesb/thread/a03c4a65-2419-40c1-a814-b07790d3c0f4?prof=required" target="_blank">this technique</a>…</p>
<p>When parsing a flat-file, then applying a transform (map) to it in an itinerary, I was consistently getting an error message:</p>
<blockquote><p>Description: There was a failure executing the receive pipeline</p>
<p>Reason: Cannot access a disposed object.</p>
<p>Object name: &#8216;DataReader&#8217;.</p></blockquote>
<p>Updating the FF Disassembler Pipeline Component in my custom Pipeline fixed the issue. I had to set the “Recoverable interchange processing” property to true.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/dd257076(v=BTS.10).aspx" target="_blank">This article </a>describes the function of this property in the disassemble stage.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=257&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/05/25/using-a-transform-after-a-flat-file-disassembler-in-an-esb-itinerary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>BizTalk 2010 Current ISA Control Numbers</title>
		<link>http://jglisson73.wordpress.com/2011/04/15/biztalk-2010-current-isa-control-numbers/</link>
		<comments>http://jglisson73.wordpress.com/2011/04/15/biztalk-2010-current-isa-control-numbers/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 15:19:26 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=251</guid>
		<description><![CDATA[This is some useful information about how EDI Control Numbers are managed within BizTalk 2010. http://social.msdn.microsoft.com/Forums/en-US/biztalkediandas2/thread/17e16112-209b-40ed-926b-8d2627954b9a/ I have a situation at a client because we were keeping the Party/Agreement nodes in the Bindings file when we promoted new bindings from QA to Production. This was causing the Party Agreements to get dropped and re-created, which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=251&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is some useful information about how EDI Control Numbers are managed within BizTalk 2010.</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/biztalkediandas2/thread/17e16112-209b-40ed-926b-8d2627954b9a/" target="_blank">http://social.msdn.microsoft.com/Forums/en-US/biztalkediandas2/thread/17e16112-209b-40ed-926b-8d2627954b9a/</a></p>
<p>I have a situation at a client because we were keeping the Party/Agreement nodes in the Bindings file when we promoted new bindings from QA to Production. This was causing the Party Agreements to get dropped and re-created, which reset the control numbers back to 1. The result was 997 rejects for duplicate control numbers.</p>
<p>Moving forward, I will have to be careful to remove the Trading Partners from the Bindings file which we do not want to be dropped and re-created, that way the EDI Control Numbers will be maintained.</p>
<p>This is the answer to my question about the issue from the MSDN Forum link above:</p>
<blockquote><p>To get the current ISA Control number, you can find it in the BizTalkMsgBoxDb database EdiControlNumbers table. Control numbers are maintained based on the Agreement set up between trading partners. Agreement details can be found in BizTalkMgmtDb &#8211; tpm.OnewayAgreement table.</p>
<p>When you import binding file with a party information, which already exists, existing agreement id will be removed and new agreement id will be created with new control numbers(1 as starting value).</p></blockquote>
<p>Here are the queries I used to help track down the Party to get the OneWayAgreement.Id to use when querying the EdiControlNumbers table.</p>
<blockquote><p> USE BizTalkMgmtDb</p>
<p>select * from tpm.OnewayAgreement o</p>
<p>inner join tpm.BusinessIdentity bi on bi.Id = o.ReceiverId</p>
<p>inner join tpm.BusinessProfile bp on bp.ProfileId = bi.ProfileId</p>
<p>where bp.Name like &#8216;%[name]%&#8217;</p>
<p>USE BizTalkMsgBoxDb</p>
<p>select * from EdiControlNumbers</p>
<p>where OnewayAgreementId = [id]</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=251&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/04/15/biztalk-2010-current-isa-control-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server Loopback Linked Server</title>
		<link>http://jglisson73.wordpress.com/2011/02/24/sql-server-loopback-linked-server/</link>
		<comments>http://jglisson73.wordpress.com/2011/02/24/sql-server-loopback-linked-server/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 18:31:06 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=249</guid>
		<description><![CDATA[Occasionally I run across companies that make use of linked servers. This can be a nasty little detail in a development environment to fully test database code. The solution is to create a loopback linked server so that code referencing a linked server will run as if it were running in the distributed production environment. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=249&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Occasionally I run across companies that make use of linked servers. This can be a nasty little detail in a development environment to fully test database code. The solution is to create a loopback linked server so that code referencing a linked server will run as if it were running in the distributed production environment.</p>
<ol>
<li>Get a backup of the database on the other end of the linked server call.</li>
<li>Restore the backup on your local SQL Server instance</li>
<li>Run the code below to create the loopback linked server</li>
</ol>
<p>EXEC sp_addlinkedserver @server = N&#8217;name_for_linked_server&#8217;,</p>
<p>@srvproduct = N&#8217; &#8216;,</p>
<p>@provider = N&#8217;SQLNCLI&#8217;,</p>
<p>@datasrc = N&#8217;name_of_my_sqlserver_instance&#8217;,</p>
<p>@catalog = N&#8217;name_of_database&#8217;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=249&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/02/24/sql-server-loopback-linked-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>BizTalk 2010 ESB 2.1 Portal Issue</title>
		<link>http://jglisson73.wordpress.com/2011/02/17/biztalk-2010-esb-2-1-portal-issue/</link>
		<comments>http://jglisson73.wordpress.com/2011/02/17/biztalk-2010-esb-2-1-portal-issue/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 14:51:53 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=242</guid>
		<description><![CDATA[Long live Google. I was having an issue with the ESB Portal (2.1) on a BizTalk 2010 machine. I found the fix at the following link. http://www.businessprocessintegration.net/2009/03/espportal-and-a-network-related-or-instance-specific-error-occurred-while-establishing-a-connection-to-sql-server/ I was seeing this error when I would attempt to navigate to the Registry tab of the ESB Portal. Exception information: Exception type: SqlException Exception message: A network-related [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=242&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Long live Google. I was having an issue with the ESB Portal (2.1) on a BizTalk 2010 machine. I found the fix at the following link.</p>
<p><a href="http://www.businessprocessintegration.net/2009/03/espportal-and-a-network-related-or-instance-specific-error-occurred-while-establishing-a-connection-to-sql-server/" target="_blank">http://www.businessprocessintegration.net/2009/03/espportal-and-a-network-related-or-instance-specific-error-occurred-while-establishing-a-connection-to-sql-server/</a></p>
<p>I was seeing this error when I would attempt to navigate to the Registry tab of the ESB Portal.</p>
<blockquote><p>Exception information:</p>
<p>Exception type: SqlException</p>
<p>Exception message: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 0 &#8211; No connection could be made because the target machine actively refused it.)</p>
<p>Request information:</p>
<p>Request URL: http://localhost/ESB.Portal/Lists/RegistrySummaryContainer.aspx</p>
<p>Request path: /ESB.Portal/Lists/RegistrySummaryContainer.aspx</p></blockquote>
<p>The solution was to enabled TCPIP in the SQL Server Configuration Manager under SQL Server Network Configuration&#8211;&gt;Protocols for MSSQLSERVER.</p>
<p>The same issue is addressed at <a href="http://holsson.wordpress.com/2009/06/22/installing-biztalk-esb-toolkit-2-0/" target="_blank">this blog post</a> and has an interesting comment.</p>
<blockquote><p>I solved the problem the opposite way: I altered the connection string to remove &#8220;Network Library=dbmssocn&#8221;, thus eliminating the requirement to use TCP/IP.Richard</p></blockquote>
<p>I did not try that solution, but it sounds plausible as well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=242&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/02/17/biztalk-2010-esb-2-1-portal-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>BizTalk 2010 Pipeline Component Wizard</title>
		<link>http://jglisson73.wordpress.com/2011/02/08/biztalk-2010-pipeline-component-wizard/</link>
		<comments>http://jglisson73.wordpress.com/2011/02/08/biztalk-2010-pipeline-component-wizard/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 17:39:38 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=237</guid>
		<description><![CDATA[In case you were wondering, the 2.20 release of the BizTalk Pipeline Component Wizard project on CodePlex works with BizTalk 2010. http://btsplcw.codeplex.com/releases/view/46419 It took me a little while to find it on Google, so I thought I&#8217;d give something to add to the search community!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=237&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In case you were wondering, the 2.20 release of the BizTalk Pipeline Component Wizard project on CodePlex works with BizTalk 2010.</p>
<p><a href="http://btsplcw.codeplex.com/releases/view/46419" target="_blank">http://btsplcw.codeplex.com/releases/view/46419</a></p>
<p>It took me a little while to find it on Google, so I thought I&#8217;d give something to add to the search community!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/237/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=237&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/02/08/biztalk-2010-pipeline-component-wizard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>BizTalk Map Documenter for 2010</title>
		<link>http://jglisson73.wordpress.com/2011/02/04/biztalk-map-documenter-for-2010/</link>
		<comments>http://jglisson73.wordpress.com/2011/02/04/biztalk-map-documenter-for-2010/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 20:57:59 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>
		<category><![CDATA[xslt]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=233</guid>
		<description><![CDATA[I have a project with BizTalk 2010 and really want to use the BizTalk Map Documenter for the maps. I pointed it to my maps and the output did not show the content from Constant Functoids or Links into Functoids. I looked through the XSLT file and discovered a couple of tweaks that got it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=233&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a project with BizTalk 2010 and really want to use the <a title="BizTalk Map Documenter" href="http://biztalkmapdoc.codeplex.com/documentation" target="_blank">BizTalk Map Documenter</a> for the maps. I pointed it to my maps and the output did not show the content from Constant Functoids or Links into Functoids.</p>
<p>I looked through the XSLT file and discovered a couple of tweaks that got it all working.</p>
<p>Basically, everywhere in the XSLT where it references &#8221;@Type = &#8216;Link&#8217;&#8221; or &#8221;@Type = &#8216;Constant&#8217;&#8221; had to be changed to &#8221;@Type = &#8216;link&#8217;&#8221; and &#8221;@Type = &#8216;constant&#8217;&#8221;.</p>
<p>XLST is a case-sensitive language. Apparently in BizTalk 2010 the Type for Links and Constants in the map-generated code has all lower-case &#8220;link&#8221; and &#8220;constant&#8221;.</p>
<p>Anyway, I am glad to have found an easy solution. It sure beats having to put all that documentation together by hand! There will be lots of maps by the end of this project, so I am happy to have an automated tool to create useful docs.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=233&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2011/02/04/biztalk-map-documenter-for-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>Internet Connection Not Working in Virtual PC</title>
		<link>http://jglisson73.wordpress.com/2010/12/29/internet-connection-not-working-in-virtual-pc/</link>
		<comments>http://jglisson73.wordpress.com/2010/12/29/internet-connection-not-working-in-virtual-pc/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 14:13:13 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=230</guid>
		<description><![CDATA[I have a MS VPC 2007 with Windows Server 2008 as the guest operating system. Today I suddenly had issues accessing the internet from the VPC. I tried resetting the adapters and blah blah blah, nothing worked. After a quick Google search, I discovered this article that got me up and running. http://www.tipandtrick.net/2008/fix-virtual-pc-2007-shared-networking-nat-internet-not-working-in-windows-server-2003-2008-and-vista-guest-os/ It appears [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=230&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a MS VPC 2007 with Windows Server 2008 as the guest operating system. Today I suddenly had issues accessing the internet from the VPC. I tried resetting the adapters and blah blah blah, nothing worked. After a quick Google search, I discovered this article that got me up and running.</p>
<p><a href="http://www.tipandtrick.net/2008/fix-virtual-pc-2007-shared-networking-nat-internet-not-working-in-windows-server-2003-2008-and-vista-guest-os/" target="_blank">http://www.tipandtrick.net/2008/fix-virtual-pc-2007-shared-networking-nat-internet-not-working-in-windows-server-2003-2008-and-vista-guest-os/</a></p>
<p>It appears that Ping was working, but url browsing was not.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=230&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2010/12/29/internet-connection-not-working-in-virtual-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
		<item>
		<title>BizTalk Orchestration Will Not Open in the Designer</title>
		<link>http://jglisson73.wordpress.com/2010/12/27/biztalk-orchestration-will-not-open-in-the-designer/</link>
		<comments>http://jglisson73.wordpress.com/2010/12/27/biztalk-orchestration-will-not-open-in-the-designer/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 16:34:23 +0000</pubDate>
		<dc:creator>jglisson73</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Biztalk Server]]></category>

		<guid isPermaLink="false">http://jglisson73.wordpress.com/?p=219</guid>
		<description><![CDATA[I had an issue after upgrading a BizTalk Orchestration project from version 2006r2 to 2010. One of the Orchestrations mysteriously would not open in the Orchestration Editor in Visual Studio. Rather, it would open in the XML editor. The code would compile properly, but obviously this was unacceptable. I followed these steps and was able [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=219&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had an issue after upgrading a BizTalk Orchestration project from version 2006r2 to 2010. One of the Orchestrations mysteriously would not open in the Orchestration Editor in Visual Studio. Rather, it would open in the XML editor. The code would compile properly, but obviously this was unacceptable.</p>
<p>I followed these steps and was able to get the Orchestration to open properly in the IDE:</p>
<ol>
<li>Close Visual Studio</li>
<li>Launch the services console with the command: Services.msc. Restart the &#8220;Protected Storage&#8221; Service (make sure it is in the automatic mode and started).</li>
<li>Restart IIS with the command : iisreset</li>
<li>Reset the Visual Studio loaded packages (in a Visual Studio Command Prompt) with the command: devenv.exe /setup /resetskippkgs</li>
</ol>
<p>After these steps, I right-clicked on the Orchestration in the IDE Solution Explorer, chose &#8220;Open With&#8221; and then Orchestration Designer just to make sure it would open as expected.</p>
<p>I found this solution here: <a href="http://geekswithblogs.net/synBoogaloo/archive/2007/04/17/111745.aspx#423642">http://geekswithblogs.net/synBoogaloo/archive/2007/04/17/111745.aspx#423642</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jglisson73.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jglisson73.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jglisson73.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jglisson73.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jglisson73.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jglisson73.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jglisson73.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jglisson73.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jglisson73.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jglisson73.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jglisson73.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jglisson73.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jglisson73.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jglisson73.wordpress.com/219/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jglisson73.wordpress.com&amp;blog=6734437&amp;post=219&amp;subd=jglisson73&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jglisson73.wordpress.com/2010/12/27/biztalk-orchestration-will-not-open-in-the-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7c038d4e793e9628cd4450d0e6fb0ddc?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">jglisson73</media:title>
		</media:content>
	</item>
	</channel>
</rss>
