<?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/"
	>

<channel>
	<title>chillijam.co.uk &#187; BizTalk</title>
	<atom:link href="http://chillijam.co.uk/category/biztalk/feed/" rel="self" type="application/rss+xml" />
	<link>http://chillijam.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 28 Jan 2021 10:32:11 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>BizTalk EDI Problems</title>
		<link>http://chillijam.co.uk/2006/01/03/biztalk-edi-problems/</link>
		<comments>http://chillijam.co.uk/2006/01/03/biztalk-edi-problems/#comments</comments>
		<pubDate>Tue, 03 Jan 2006 13:14:54 +0000</pubDate>
		<dc:creator><![CDATA[historical]]></dc:creator>
				<category><![CDATA[BizTalk]]></category>

		<guid isPermaLink="false">http://playingwithanimport.wordpress.com/2006/01/03/biztalk-edi-problems/</guid>
		<description><![CDATA[I have had a few problems with Biztalk this morning. I&#8217;ve been trying to validate an EDI instance file against one of the standard EDI schemas supplied with Biztalk. It was bahaving strangely. Initially, the error I was presented with was : Could not find file &#8220;C:\DOCUME~1\USER1\LOCALS~1\Temp\validins.xml&#8221;. Confused, I tried to use the &#8220;Generate Instance&#8221; &#8230; <a href="http://chillijam.co.uk/2006/01/03/biztalk-edi-problems/" class="more-link">Continue reading <span class="screen-reader-text">BizTalk EDI Problems</span> <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I have had a few problems with Biztalk this morning.  I&#8217;ve been trying to validate an EDI instance file against one of the standard EDI schemas supplied with Biztalk.  It was bahaving strangely.  Initially, the error I was presented with was :</p>
<blockquote><p>Could not find file &#8220;C:\DOCUME~1\USER1\LOCALS~1\Temp\validins.xml&#8221;. </p></blockquote>
<p>Confused, I tried to use the &#8220;Generate Instance&#8221; function to try to see what was going wrong.  This time, I got another error :</p>
<blockquote><p>XSD2EDI failed to convert XSD: Compiling repository failed</p></blockquote>
<p>A quick Google on this turned up <a href="http://support.microsoft.com/?kbid=883549" target="_blank">this page</a> in Microsoft&#8217;s knowledge base.  In short, if you are logged on to the BT server with a domain account, and the EDI service is running with a machine-local account, you need to ensure that your domain account is in the &#8220;EDI Subsystem Users&#8221; group on the BT server.</p>
<p>As it happens, my schema instance failed to validate, but that&#8217;s life, I suppose.</p>
<p><!-- technorati tags start --></p>
<p style="text-align:right;font-size:10px;">Technorati Tags: <a rel="tag" href="http://www.technorati.com/tag/BizTalk">BizTalk</a>, <a rel="tag" href="http://www.technorati.com/tag/Security">Security</a>, <a rel="tag" href="http://www.technorati.com/tag/EDI">EDI</a>, <a rel="tag" href="http://www.technorati.com/tag/Users">Users</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://chillijam.co.uk/2006/01/03/biztalk-edi-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WMI Out Of Memory issues</title>
		<link>http://chillijam.co.uk/2005/07/25/wmi-out-of-memory-issues/</link>
		<comments>http://chillijam.co.uk/2005/07/25/wmi-out-of-memory-issues/#comments</comments>
		<pubDate>Mon, 25 Jul 2005 12:52:42 +0000</pubDate>
		<dc:creator><![CDATA[historical]]></dc:creator>
				<category><![CDATA[BizTalk]]></category>
		<category><![CDATA[C# Snippets]]></category>

		<guid isPermaLink="false">http://playingwithanimport.wordpress.com/2005/07/25/wmi-out-of-memory-issues/</guid>
		<description><![CDATA[I have been working on an automated way of deploying BizTalk assemblies, orchestrations and bindings without having to use NAnt or MSBuild this week. It has thrown up a problem that lots of people must have if they are doing a similar thing. Many times, my scripts would fail periodically, but not in predictable places. &#8230; <a href="http://chillijam.co.uk/2005/07/25/wmi-out-of-memory-issues/" class="more-link">Continue reading <span class="screen-reader-text">WMI Out Of Memory issues</span> <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I have been working on an automated way of deploying BizTalk assemblies, orchestrations and bindings without having to use NAnt or MSBuild this week.  It has thrown up a problem that lots of people must have if they are doing a similar thing.</p>
<p>Many times, my scripts would fail periodically, but not in predictable places.  After looking at the logs I generate, I noticed that there were a lot of &#8220;out of memory&#8221; errors caused by WMI operations.  I needed a quick fix, so I came up with this (horrible and hacky) workaround.</p>
<p>Before each section of code, restart the &#8220;winmgmt&#8221; service.  That&#8217;s it.  The scripts now work flawlessly &#8211; or at least, they fail in predictable places now.</p>
<p>**EDIT**</p>
<p>I have just been pointed towards <a href="http://geekswithblogs.net/nparker/archive/2004/10/16/12700.aspx">this page</a> which details how to increase the amount of memory available to WMI from its default of 128MB.</p>
]]></content:encoded>
			<wfw:commentRss>http://chillijam.co.uk/2005/07/25/wmi-out-of-memory-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
