<?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>Blog of developer Mikkel Ovesen &#187; error</title>
	<atom:link href="http://blog.ovesens.net/tag/error/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ovesens.net</link>
	<description>My thoughts, stuff I need to remember or things I just want to share with the world</description>
	<lastBuildDate>Thu, 19 Jan 2012 11:55:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Visual Studio 2010 Package load errors</title>
		<link>http://blog.ovesens.net/2011/10/visual-studio-2010-package-load-errors/</link>
		<comments>http://blog.ovesens.net/2011/10/visual-studio-2010-package-load-errors/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 07:11:35 +0000</pubDate>
		<dc:creator>Mikkel Ovesen</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[vs2010]]></category>

		<guid isPermaLink="false">http://blog.ovesens.net/?p=439</guid>
		<description><![CDATA[My Windows 7 installation on my laptop broke down, and I then had to completely reinstall Windows 7, Visual Studio etc. Besides it being a long and tedious process it seemed to go fine. But I started to get the &#8230; <a href="http://blog.ovesens.net/2011/10/visual-studio-2010-package-load-errors/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My Windows 7 installation on my laptop broke down, and I then had to completely reinstall Windows 7, Visual Studio etc.</p>
<p>Besides it being a long and tedious process it seemed to go fine. But I started to get the following error messages when Visual Studio 2010 was launched:</p>
<blockquote><p>The &#8216;RadLangSvc.Package, RadLangSvc.VS, Version = 10.0.0.0, Culture = neutral, PublicKeyToken = 89845dcd8080cc91&#8242; failed to load</p></blockquote>
<blockquote><p>VSTS for Database Professionals Sql Server Data-tier Application did not load</p></blockquote>
<p>and some other VSTS packages that was unable to load.</p>
<p>I followed the steps described <a href="http://techsolutions-at-desk.blogspot.com/2011/04/radlangsvcvs-version-10000-culture.html">here</a>, and it worked <img src='http://blog.ovesens.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . The steps are also described below:</p>
<ol>
<li>Close all running instances of Visual Studio 2010</li>
<li>Install the following MSI packages from the installation CD of VS2010, in the folder  \WCU\DAC</li>
<li>DACProjectSystemSetup_enu.msi</li>
<li>TSqlLanguageService_enu.msi</li>
<li>DACFramework_enu.msi</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.ovesens.net/2011/10/visual-studio-2010-package-load-errors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Membase local development machine ip problem &#8211; FIXED</title>
		<link>http://blog.ovesens.net/2011/02/membase-local-development-machine-ip-problem-fixed/</link>
		<comments>http://blog.ovesens.net/2011/02/membase-local-development-machine-ip-problem-fixed/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 12:05:18 +0000</pubDate>
		<dc:creator>Mikkel Ovesen</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[membase]]></category>

		<guid isPermaLink="false">http://blog.ovesens.net/?p=323</guid>
		<description><![CDATA[Membase caching stops working I struggled with Membase last night. I added NHibernate 2. level caching, Asp.net Session caching, Output caching and custom caching to some new Membase providers. It worked at first, but then suddenly nothing was cached, and &#8230; <a href="http://blog.ovesens.net/2011/02/membase-local-development-machine-ip-problem-fixed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Membase caching stops working</h2>
<p>I struggled with Membase last night. I added NHibernate 2. level caching, Asp.net Session caching, Output caching and custom caching to some new Membase providers.</p>
<p>It worked at first, but then suddenly nothing was cached, and nothing was retrieved from the cache. I was working on my development machine and it seems like the problem is due to the network switching.</p>
<p>Well here is how it was solved. First navigate to the Membase server directory (C:\Program Files\Membase\Server\bin). Then execute the following commands.</p>
<p><code>service_stop.bat<br />
service_unregister.bat<br />
service_register.bat ns_1@127.0.0.1<br />
service_start.bat</code></p>
<p>Read the original here: <a href="http://blog.danhulton.com/2011/02/05/membase-on-windows-7-ip-address-fix/">http://blog.danhulton.com/2011/02/05/membase-on-windows-7-ip-address-fix/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ovesens.net/2011/02/membase-local-development-machine-ip-problem-fixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print Spooler error in Windows 7 (Bootcamp)</title>
		<link>http://blog.ovesens.net/2010/02/print-spooler-error-in-windows-7-bootcamp/</link>
		<comments>http://blog.ovesens.net/2010/02/print-spooler-error-in-windows-7-bootcamp/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 14:19:26 +0000</pubDate>
		<dc:creator>Mikkel Ovesen</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bootcamp]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[printer spooler]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://blog.ovesens.net/?p=218</guid>
		<description><![CDATA[I found this blog post, which solved my problem regarding being unable to print on my Windows 7 MacBook Pro 13&#8243; using Bootcamp. http://tomgee.us/?p=172 This is from the original blog post (thanks to Tom Gee): &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; The problem Today, when &#8230; <a href="http://blog.ovesens.net/2010/02/print-spooler-error-in-windows-7-bootcamp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I found this blog post, which solved my problem regarding being unable to print on my Windows 7 MacBook Pro 13&#8243; using Bootcamp.</p>
<p><a href="http://tomgee.us/?p=172" target="_blank">http://tomgee.us/?p=172</a></p>
<p>This is from the original blog post (thanks to Tom Gee):</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h2>The problem</h2>
<p>Today, when I booted directly into my Windows 7 partition (not via VMWare), I noticed that I couldnâ€™t print anything anymore.</p>
<p>I checked the Event Viewer and found the following error in the System log:<br />
The Print Spooler service terminated unexpectedly.</p>
<p>In the Application section of the Event Viewer, I found the following:</p>
<pre>Faulting application name: spoolsv.exe, version: 6.1.7600.16385, time stamp: 0Ã—4a5bd3d1
Faulting module name: TPVMMon.dll, version: 2.0.51.5, time stamp: 0Ã—48359080
Exception code: 0xc0000005
Fault offset: 0Ã—000000000000846e
Faulting process id: 0Ã—1300
Faulting application start time: 0Ã—01caa2aa2c4394d8
Faulting application path: C:\Windows\System32\spoolsv.exe
Faulting module path: C:\Windows\System32\TPVMMon.dll
Report Id: 7188e318-0e9d-11df-9123-895fd79b6e49
Faulting application name: spoolsv.exe, version: 6.1.7600.16385, time stamp: 0Ã—4a5bd3d1Faulting module name: TPVMMon.dll, version: 2.0.51.5, time stamp: 0Ã—48359080Exception code: 0xc0000005Fault offset: 0Ã—000000000000846eFaulting process id: 0Ã—1300Faulting application start time: 0Ã—01caa2aa2c4394d8Faulting application path: C:\Windows\System32\spoolsv.exeFaulting module path: C:\Windows\System32\TPVMMon.dllReport Id: 7188e318-0e9d-11df-9123-895fd79b6e49</pre>
<p>The only thing I could attribute the Print Spooler issue to was VMWare Fusion.</p>
<p>I tried uninstalling the VMWare Tools program listed in the Control Panel &gt; Uninstall Program section, but it would not remove.</p>
<p>No errors were displayed, but the program wouldnâ€™t remove from the Programs list.</p>
<h2>The solution</h2>
<p>I deleted the following folder (and all related subkeys) from the Registry (via Start &gt; Run &gt; regedit):</p>
<p>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Contro l\Print\Monitors\ThinPrint Print Port Monitor for VMWare]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ovesens.net/2010/02/print-spooler-error-in-windows-7-bootcamp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2008 debugging and breakpoints</title>
		<link>http://blog.ovesens.net/2010/01/visual-studio-2008-debugging-and-breakpoints/</link>
		<comments>http://blog.ovesens.net/2010/01/visual-studio-2008-debugging-and-breakpoints/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 08:38:32 +0000</pubDate>
		<dc:creator>Mikkel Ovesen</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[vs2008]]></category>

		<guid isPermaLink="false">http://blog.ovesens.net/?p=207</guid>
		<description><![CDATA[My development tools are currently Visual Studio 2008, Resharper 4.5, Gallio and Testdriven.NET. But for as long as I have used these tools, my Visual Studio debugger has only worked partly. The problem When I inserted some breakpoints inÂ my code, &#8230; <a href="http://blog.ovesens.net/2010/01/visual-studio-2008-debugging-and-breakpoints/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My development tools are currently <a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx" target="_blank">Visual Studio 2008</a>, <a href="http://www.jetbrains.com/resharper/index.html" target="_blank">Resharper 4.5</a>, <a href="http://www.gallio.org/" target="_blank">Gallio</a> and <a href="http://www.testdriven.net/" target="_blank">Testdriven.NET</a>. But for as long as I have used these tools, my Visual Studio debugger has only worked partly.</p>
<h2>The problem</h2>
<p>When I inserted some breakpoints inÂ my code, the first one was almost all the time hit. However, when I tried to step through the code, it worked fine for a bout 3-6 steps. But then Visual Studio debugger decided that was enough, and just completed the code.</p>
<p>The good thing was, it forced me to write many unit test cases, but sometimes I really think it is nice to visually see the state of your objects, in the code.</p>
<p>I have spoken to colleagues, and tested with different combinations of Gallio, Testdriven.NET and Re-sharper enabled, as I thought they cased the problem. But the debugger just kept bugging me. I had actually given up finding a solution to this problem, thinking that Visual Studio 2010 would fix it.</p>
<h2>The solution</h2>
<p>So finally, in a complete other context, I stumbled upon this page:</p>
<p><a href="http://code.msdn.microsoft.com/KB957912" target="_blank">http://code.msdn.microsoft.com/KB957912</a></p>
<p>And thought&#8230;. that title sounds interesting&#8230; I quickly moved to the <a href="http://support.microsoft.com/kb/957912" target="_blank">KB article</a>, and started to read. I thought, that sounds exactly as my problem.</p>
<p>With nothing to loose I installed the update, and started to test the debugger&#8230; until now it seems to work <img src='http://blog.ovesens.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>- please note, I do not use the debugger that often as I write very reliable code <img src='http://blog.ovesens.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ovesens.net/2010/01/visual-studio-2008-debugging-and-breakpoints/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2008 &#8211; ItemTemplatesCache missing</title>
		<link>http://blog.ovesens.net/2008/11/visual-studio-2008-itemtemplatescache-missing/</link>
		<comments>http://blog.ovesens.net/2008/11/visual-studio-2008-itemtemplatescache-missing/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 23:57:00 +0000</pubDate>
		<dc:creator>Mikkel Ovesen</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[vs]]></category>
		<category><![CDATA[vs2008]]></category>

		<guid isPermaLink="false">/post/2008/11/11/Visual-Studio-2008-ItemTemplatesCache-missing.aspx</guid>
		<description><![CDATA[The issue&#160; My Visual Studio 2008 opened the solution file with no problem. However, when I was to add a new class, user control, aspx file or similar, I received the error: Could not find part of &#34;c:\Program Files\Microsoft Visual &#8230; <a href="http://blog.ovesens.net/2008/11/visual-studio-2008-itemtemplatescache-missing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>The issue&nbsp;</h1>
<p>
My Visual Studio 2008 opened the solution file with no problem. However, when I was to add a new class, user control, aspx file or similar, I received the error:
</p>
<p>
Could not find part of &quot;c:\Program Files\Microsoft Visual Studio 9.0\&#8230;\ItemTemplatesCache&#8230;&quot;
</p>
<p>
[and the path to the ItemTemplatesCache in Visual Studio 2008 folder].
</p>
<h1>The solution</h1>
<p>
Well, one slution would be to reinstall or repair installation of Visual studio 2008. However, after searching for a while I found a solution that is much easier:
</p>
<ol>
<li>Open &quot;Visual Studio 2008 Command Prompt&quot; as an Administrator</li>
<li>Run the command: &quot;devenv /installvstemplates&quot;</li>
<li>That&#39;s it</li>
</ol>
<p>
&nbsp;
</p>
<p>
It takes a while but it completely rebuild your item template cache if it is corrupt or completely missing like me.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ovesens.net/2008/11/visual-studio-2008-itemtemplatescache-missing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Health monitoring explained ASP.NET</title>
		<link>http://blog.ovesens.net/2007/10/health-monitoring-explained-asp-net/</link>
		<comments>http://blog.ovesens.net/2007/10/health-monitoring-explained-asp-net/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 11:37:49 +0000</pubDate>
		<dc:creator>Mikkel Ovesen</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">/post/2007/10/10/Health-monitoring-explained-ASPNET.aspx</guid>
		<description><![CDATA[Original post: http://aspnet.4guysfromrolla.com/articles/031407-1.aspx]]></description>
			<content:encoded><![CDATA[<p>Original post: http://aspnet.4guysfromrolla.com/articles/031407-1.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ovesens.net/2007/10/health-monitoring-explained-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

