<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Suddenelfilio's Weblog</title>
	<atom:link href="http://blog.suddenelfilio.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.suddenelfilio.net</link>
	<description>Passionate about .net</description>
	<pubDate>Thu, 06 Nov 2008 14:24:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Compact framework WCF, Disco files, netcfsvcutil</title>
		<link>http://blog.suddenelfilio.net/2008/11/06/compact-framework-wcf-disco-files-netcfsvcutil/</link>
		<comments>http://blog.suddenelfilio.net/2008/11/06/compact-framework-wcf-disco-files-netcfsvcutil/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 14:24:25 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[.net 3.5]]></category>

		<category><![CDATA[.net Compact Framework]]></category>

		<category><![CDATA[IIS]]></category>

		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2008/11/06/compact-framework-wcf-disco-files-netcfsvcutil/</guid>
		<description><![CDATA[When using the 3.5 version of the compact framework it is possible to connect with wcf services. This is because the CF 3.5 contains a limited subset of the wcf technology. There are several blog posts listing the wcf capabilities in CF e.g.: http://blogs.msdn.com/andrewarnottms/archive/2007/08/21/the-wcf-subset-supported-by-netcf.aspx
We were researching for a mobile client to connect to a wcf [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When using the 3.5 version of the compact framework it is possible to connect with wcf services. This is because the CF 3.5 contains a limited subset of the wcf technology. There are several blog posts listing the wcf capabilities in CF e.g.: <a href="http://blogs.msdn.com/andrewarnottms/archive/2007/08/21/the-wcf-subset-supported-by-netcf.aspx">http://blogs.msdn.com/andrewarnottms/archive/2007/08/21/the-wcf-subset-supported-by-netcf.aspx</a></p>
<p>We were researching for a mobile client to connect to a wcf service running at one of our servers. The requirement is that transport is secured by using HTTPS protocol. </p>
<p>The first problem was creating a client side proxy. Since the SvcUtil doesn’t work for the CF we had to look for an alternative. After some googling we found the netCFSvcUtil which is basically the same as the svcutil, but it generates a proxy specifically for CF. You can find it as part of the Power Toys for .NET Compact Framework 3.5. For more on this you can read <a href="http://64.233.183.104/search?q=cache:6BHoqVDFuz8J:blogs.msdn.com/andrewarnottms/archive/2007/09/13/calling-wcf-services-from-netcf-3-5-using-compact-wcf-and-netcfsvcutil-exe.aspx+netcfsvcutil&amp;hl=nl&amp;ct=clnk&amp;cd=2&amp;gl=be" target="_blank">this excellent blog post by Andrew Arnott</a></p>
<p>When you get this generated client proxy there is another problem. It expects that you are using HTTP. Since we need HTTP<strong>S </strong>that’s a problem. Thanks to <a href="http://developers.de/blogs/damir_dobric/archive/2008/08/23/creating-default-bindings-on-compact-framework.aspx" target="_blank">Damir Dobric</a> we found how to make the proxy use https instead of http.</p>
<pre>System.ServiceModel.Channels.CustomBinding binding = <span style="color:#0000ff;">new</span>
    System.ServiceModel.Channels.CustomBinding();
binding.Elements.Add(<span style="color:#0000ff;">new</span> System.ServiceModel.Channels.TextMessageEncodingBindingElement
   (System.ServiceModel.Channels.MessageVersion.Soap11, System.Text.Encoding.UTF8));
System.ServiceModel.Channels.HttpsTransportBindingElement https =
   <span style="color:#0000ff;">new</span> System.ServiceModel.Channels.HttpsTransportBindingElement(); </pre>
<pre>https.RequireClientCertificate = <span style="color:#0000ff;">false</span>;
binding.Elements.Add(https);</pre>
<pre>&nbsp;</pre>
<p>This way your client proxy is now HTTPS enabled. </p>
<p>&nbsp;</p>
<p>Another problem we had was that the disco file was downloaded from the “wrong” location. We have a wildcard certificate in place for our HTTPS like *.domain.com. We were accessing the service using <a href="https://laptop1.domain.com/wcf/service.svc">https://laptop1.domain.com/wcf/service.svc</a>. Although this url works fine when we browsed to it, there was an issue when we tried to generate a client proxy. It seemed that both svcutil as netcfsvcutil were trying to download the DISCO file from <a href="https://laptop1/wcf/service.svc?Disco">https://laptop1/wcf/service.svc?Disco</a>. When we browsed to this link it worked just fine. The problem is in the url and the wildcard certificate. Since the disco url didn’t include the domain.com part in its url the utils were not able to establish a trust relationship over ssl with the web server. This is perfectly normal since it does not correspond with our wildcard certificate. </p>
<p>The solution is to update the https binding in IIS by giving it a host header. Now this is something you can’t do in the IIS control panel. There are 2 ways of doing this: Using <a href="http://blogs.msdn.com/drnick/archive/2008/07/09/configuring-ssl-host-headers.aspx" target="_blank">scripting</a> or using the metabase explorer that can be found in the IIS 6.0 resource toolkit<a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/993a8a36-5761-448f-889e-9ae58d072c09.mspx?mfr=true" target="_blank">http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/993a8a36-5761-448f-889e-9ae58d072c09.mspx?mfr=true</a></p>
<p>&nbsp;</p>
<p>A last advice don’t fall into the same trap by thinking that a wshttpbinding is required to do HTTPS, it’s perfectly possible by using a basichttpbinding where the security mode is set to transport.</p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=164&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/11/06/compact-framework-wcf-disco-files-netcfsvcutil/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual studio .net 2010 &#38; .net Framework 4.0 CTP</title>
		<link>http://blog.suddenelfilio.net/2008/10/30/visual-studio-net-2010-net-framework-40-ctp/</link>
		<comments>http://blog.suddenelfilio.net/2008/10/30/visual-studio-net-2010-net-framework-40-ctp/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 14:01:56 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<category><![CDATA[.net 2.0]]></category>

		<category><![CDATA[.net 3.0]]></category>

		<category><![CDATA[.net 3.5]]></category>

		<category><![CDATA[.net 4.0]]></category>

		<category><![CDATA[Visual Studio .Net 2010]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2008/10/30/visual-studio-net-2010-net-framework-40-ctp/</guid>
		<description><![CDATA[ Today I found that the first CTP for visual studio .net 2010 and the .net framework 4.0 is available for download. If you want a quick overview of some of the new features go to this website: http://msdn.microsoft.com/en-us/vs2008/products/cc948977.aspx&#160;
If you want to download the CTP you should go to the Microsoft Connect page
&#160;&#160;&#160;&#160;&#160;&#160;   [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://suddenelfilio.files.wordpress.com/2008/10/f2b6457049564687b2d758842cabbbe8.jpg"><img style="border-right:0;border-top:0;float:none;margin-left:auto;border-left:0;margin-right:auto;border-bottom:0;display:block;" title="f2b64570-4956-4687-b2d7-58842cabbbe8" border="0" alt="f2b64570-4956-4687-b2d7-58842cabbbe8" src="http://suddenelfilio.files.wordpress.com/2008/10/f2b6457049564687b2d758842cabbbe8-thumb.jpg?w=240" width="240"/></a> Today I found that the first CTP for visual studio .net 2010 and the .net framework 4.0 is available for download. If you want a quick overview of some of the new features go to this website: <a href="http://msdn.microsoft.com/en-us/vs2008/products/cc948977.aspx">http://msdn.microsoft.com/en-us/vs2008/products/cc948977.aspx</a>&nbsp;</p>
<p>If you want to download the CTP you should go to the <a href="https://connect.microsoft.com/VisualStudio" target="_blank">Microsoft Connect page</a></p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=162&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/10/30/visual-studio-net-2010-net-framework-40-ctp/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>

		<media:content url="http://suddenelfilio.files.wordpress.com/2008/10/f2b6457049564687b2d758842cabbbe8-thumb.jpg" medium="image">
			<media:title type="html">f2b64570-4956-4687-b2d7-58842cabbbe8</media:title>
		</media:content>
	</item>
		<item>
		<title>new .net Logo</title>
		<link>http://blog.suddenelfilio.net/2008/10/27/new-net-logo/</link>
		<comments>http://blog.suddenelfilio.net/2008/10/27/new-net-logo/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 15:51:07 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2008/10/27/new-net-logo/</guid>
		<description><![CDATA[
&#160;
&#160;
&#160;
Meet the new .net logo. I like it.
&#160;&#160;&#160;&#160;&#160;&#160;     ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://suddenelfilio.files.wordpress.com/2008/10/image-3.png"><img style="border-right:0;border-top:0;margin-left:0;border-left:0;margin-right:0;border-bottom:0;display:inline;" title="image_3" border="0" alt="image_3" align="left" src="http://suddenelfilio.files.wordpress.com/2008/10/image-3-thumb.png?w=240" width="240"/></a>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Meet the new .net logo. I like it.</p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=159&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/10/27/new-net-logo/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>

		<media:content url="http://suddenelfilio.files.wordpress.com/2008/10/image-3-thumb.png" medium="image">
			<media:title type="html">image_3</media:title>
		</media:content>
	</item>
		<item>
		<title>If only &#8230;</title>
		<link>http://blog.suddenelfilio.net/2008/10/23/if-only/</link>
		<comments>http://blog.suddenelfilio.net/2008/10/23/if-only/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 12:31:37 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/?p=133</guid>
		<description><![CDATA[A application menu like the one you can see here is something I wish for every day at work. It would really make life easier  Just wondering in what language it was programmed because I really wonder how they got it to compile
&#160;&#160;&#160;&#160;&#160;&#160;     ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:left;"><img class="size-medium wp-image-132 alignright" src="http://suddenelfilio.files.wordpress.com/2008/07/workmenu.jpg?w=386&#038;h=329" alt="" width="386" height="329" />A application menu like the one you can see here is something I wish for every day at work. It would really make life easier <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Just wondering in what language it was programmed because I really wonder how they got it to compile</p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=133&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/10/23/if-only/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>

		<media:content url="http://suddenelfilio.files.wordpress.com/2008/07/workmenu.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>MSMQ Message priority</title>
		<link>http://blog.suddenelfilio.net/2008/10/22/msmq-message-priority/</link>
		<comments>http://blog.suddenelfilio.net/2008/10/22/msmq-message-priority/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 20:36:47 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[.net 3.5]]></category>

		<category><![CDATA[MSMQ]]></category>

		<category><![CDATA[Visual Studio .Net 2008]]></category>

		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2008/10/22/msmq-message-priority/</guid>
		<description><![CDATA[In my recent development I’ve been using msmq to store messages that can’t reach a wcf service when it’s not available. I was setting the Message (System.Messaging) property Priority so that the queue would prioritize the incoming messages.
However when I looked at the queue all the messages their priorities where 0 or “Lowest”. It seems [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In my recent development I’ve been using msmq to store messages that can’t reach a wcf service when it’s not available. I was setting the Message (System.Messaging) property Priority so that the queue would prioritize the incoming messages.</p>
<p>However when I looked at the queue all the messages their priorities where 0 or “Lowest”. It seems to be because my queue is transactional (which is a requirement for the msmqintegrationbinding). It was a bit of a disappointment that I couldn’t control the priority using the native msmq features, but hey that’s the price I had to pay for some other great functionality.</p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=154&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/10/22/msmq-message-priority/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>
	</item>
		<item>
		<title>WCF: msmqIntegrationBinding</title>
		<link>http://blog.suddenelfilio.net/2008/10/22/wcf-msmqintegrationbinding/</link>
		<comments>http://blog.suddenelfilio.net/2008/10/22/wcf-msmqintegrationbinding/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 20:31:52 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[.net 3.5]]></category>

		<category><![CDATA[Visual Studio .Net 2008]]></category>

		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/2008/10/22/wcf-msmqintegrationbinding/</guid>
		<description><![CDATA[Today I discovered the msmqintegrationbinding in the windows communication framework.
This binding is especially to allow wcf services to process message that are put in a message queue by some legacy program. The advantage of this is that you can do this without the need to change the legacy client.
If you want more information on how [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today I discovered the msmqintegrationbinding in the windows communication framework.</p>
<p>This binding is especially to allow wcf services to process message that are put in a message queue by some legacy program. The advantage of this is that you can do this without the need to change the legacy client.</p>
<p>If you want more information on how to use this binding have a look at this <a target="_blank" href="http://blogs.conchango.com/simonevans/archive/2007/09/17/A-comprehensive-guide-to-using-MsmqIntegrationBinding-with-MSMQ-3.0-in-WCF.aspx">post at Simon Evan’s blog</a></p>
<p>There was something I liked in particular and it was exactly what I was looking for; I’m working on a custom logging framework adapted to our needs. To keep it simple let’s say that a Log class sends messages using the fast netnamedpipebinding in wcf to a service. This works fine, but what when the service is unavailable? Well I’ve designed the Log class to automatically failover sending the message it would normally send to the service to a queue. This way I don’t lose any of the log messages. The advantage I mentioned above is that when I reset the service (launch it again) it automatically starts processing the messages (logs) in the queue as well as accepting new log messages using the named pipes. So this way I achieve our main priority: deliver the log messages as fast as possible, but without losing them when the service is down.</p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=152&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/10/22/wcf-msmqintegrationbinding/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>
	</item>
		<item>
		<title>var crash = from feature in visual studio where feature.name.Contains(Silverlight 2.0 tools) select feature</title>
		<link>http://blog.suddenelfilio.net/2008/10/22/var-crash-from-feature-in-visual-studio-where-featurenamecontainssilverlight-20-tools-select-feature/</link>
		<comments>http://blog.suddenelfilio.net/2008/10/22/var-crash-from-feature-in-visual-studio-where-featurenamecontainssilverlight-20-tools-select-feature/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 20:12:29 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<category><![CDATA[.net 3.5]]></category>

		<category><![CDATA[Silverlight]]></category>

		<category><![CDATA[Visual Studio .Net 2008]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/?p=148</guid>
		<description><![CDATA[i&#8217;ve been struggling to get the RC1 of the silverlight tools for visual studio .net 2008 going. So far I&#8217;ve tried the following:
- turning off UAC
- Repairing Visual studio setup
- SubinAcl from the following blog: http://petesbloggerama.blogspot.com/2008/01/fix-requested-registry-access-is-not.html
- Running vs.net as administrator
I always get the following error message:


  Personally I really am starting to hate the whole silverlight technology. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>i&#8217;ve been struggling to get the RC1 of the silverlight tools for visual studio .net 2008 going. So far I&#8217;ve tried the following:</p>
<p>- turning off UAC<br />
- Repairing Visual studio setup<br />
- SubinAcl from the following blog: <a href="http://petesbloggerama.blogspot.com/2008/01/fix-requested-registry-access-is-not.html">http://petesbloggerama.blogspot.com/2008/01/fix-requested-registry-access-is-not.html<br />
</a>- Running vs.net as administrator</p>
<p>I always get the following error message:</p>
<p><a href="http://suddenelfilio.files.wordpress.com/2008/10/silverlight-error.png"><br />
<img class="aligncenter size-medium wp-image-149" title="silverlight-error" src="http://suddenelfilio.files.wordpress.com/2008/10/silverlight-error.png?w=300&#038;h=148" alt="" width="300" height="148" /></a><br />
  Personally I really am starting to hate the whole silverlight technology. The first version was crap because you had to be some guru to be able to program something fancy looking and now the second version is out and the tools are crap. So what&#8217;s next crappy visual studio .net 2010 all together? I really would like the guys at MS to take it a bit slower so they can increase the quality of their products.</p>
<p style="text-align:center;"><script type="text/javascript" language="javascript" src="http://s3.polldaddy.com/p/1030852.js"></script><noscript> <a href="http://answers.polldaddy.com/poll/1030852/">View Poll</a></noscript></p>
<p style="text-align:center;"> </p>
&nbsp;&nbsp;&nbsp;Tagged: Silverlight, Visual Studio .Net 2008&nbsp;&nbsp;&nbsp;<a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=148&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/10/22/var-crash-from-feature-in-visual-studio-where-featurenamecontainssilverlight-20-tools-select-feature/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>

		<media:content url="http://suddenelfilio.files.wordpress.com/2008/10/silverlight-error.png?w=300" medium="image">
			<media:title type="html">silverlight-error</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Microsoft Team Foundation Server SP 1</title>
		<link>http://blog.suddenelfilio.net/2008/09/11/installing-microsoft-team-foundation-server-sp-1/</link>
		<comments>http://blog.suddenelfilio.net/2008/09/11/installing-microsoft-team-foundation-server-sp-1/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 22:46:50 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[.net]]></category>

		<category><![CDATA[Team Foundation Server]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/?p=146</guid>
		<description><![CDATA[I was trying to install the new Team Foundation Server 2008 the other day. I wanted to install it in an dual machine configuration, meaning that I wanted to separate the database from the application server. 
To do this I downloaded the new Vmware Server 2.0 which is actually a &#8220;light&#8221; version of the VmWare Infrastructure [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was trying to install the new Team Foundation Server 2008 the other day. I wanted to install it in an dual machine configuration, meaning that I wanted to separate the database from the application server. </p>
<p>To do this I downloaded the new Vmware Server 2.0 which is actually a &#8220;light&#8221; version of the VmWare Infrastructure 3.0. I&#8217;ve installed 2 guest machines running both Windows Server 2008 Enterprise Edition.</p>
<p>An additional requirement is that the TFS server uses the new Sql Server 2008. And here is the problem. &#8220;To use Sql Server 2008, you must install Team Foundation Server Service Pack 1&#8243;. But how can you do this when all you&#8217;ve got is the RTM version of TFS and a separate download of the service pack&#8230;</p>
<p>Well if you download the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=FF12844F-398C-4FE9-8B0D-9E84181D9923&amp;displaylang=en" target="_blank">latest TFS installation guide</a> from Microsoft (version 8.0.080908). Somewhere in there you&#8217;ll find a small entry on how to merge the service pack with the tfs installation files. When you follow this guide like I did you might encounter an error from MSI with error code 2203. When this is happening you should try to do the following:</p>
<p>- Run the command from a command prompt with elevated privileges<br />
- Grant Full Controll permissions to the SYSTEM user on the folders where you&#8217;ve copied the installation files from the dvd.</p>
<p>And finaly the very important make sure that the installation files you&#8217;ve copied from the dvd are <strong>NOT marked as read-only!!!</strong> This last thing solved the problem for me.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/suddenelfilio.wordpress.com/146/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/suddenelfilio.wordpress.com/146/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=146&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/09/11/installing-microsoft-team-foundation-server-sp-1/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>
	</item>
		<item>
		<title>i love my cute girlfriend</title>
		<link>http://blog.suddenelfilio.net/2008/09/11/i-love-my-cute-girlfriend/</link>
		<comments>http://blog.suddenelfilio.net/2008/09/11/i-love-my-cute-girlfriend/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 22:33:39 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/?p=141</guid>
		<description><![CDATA[
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><a href="http://suddenelfilio.files.wordpress.com/2008/09/dsc00160.jpg"><img class="size-medium wp-image-143 aligncenter" title="dsc00160" src="http://suddenelfilio.files.wordpress.com/2008/09/dsc00160.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/suddenelfilio.wordpress.com/141/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/suddenelfilio.wordpress.com/141/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=141&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/09/11/i-love-my-cute-girlfriend/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>

		<media:content url="http://suddenelfilio.files.wordpress.com/2008/09/dsc00160.jpg?w=300" medium="image">
			<media:title type="html">dsc00160</media:title>
		</media:content>
	</item>
		<item>
		<title>New found passion</title>
		<link>http://blog.suddenelfilio.net/2008/08/28/new-found-passion/</link>
		<comments>http://blog.suddenelfilio.net/2008/08/28/new-found-passion/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 10:21:16 +0000</pubDate>
		<dc:creator>suddenelfilio</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://suddenelfilio.wordpress.com/?p=135</guid>
		<description><![CDATA[I&#8217;ve always liked music a lot, especially dance music. My favorit genres are techno &#38; minimal and some other ones. I discovered that if you like this kind of music that there are some good sources to get more information on what is hot at the moment.
One site I would to mention is Beatport.
This is [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve always liked music a lot, especially dance music. My favorit genres are techno &amp; minimal and some other ones. I discovered that if you like this kind of music that there are some good sources to get more information on what is hot at the moment.</p>
<p>One site I would to mention is <a title="BeatPort" href="http://www.beatport.com" target="_self">Beatport</a>.</p>
<p style="text-align:center;"><a href="http://www.beatport.com"><img class="alignleft size-large wp-image-136" src="http://suddenelfilio.files.wordpress.com/2008/08/beatport_main.jpg?w=208&#038;h=48" alt="" width="208" height="48" /></a>This is music download site (legal) that focusses on the dance music around the world, you&#8217;ll find lots of genres on their site. It&#8217;s there I discovered some of my favorit artists like Kolombo, Henrik Schwarz, &#8230; Prices are democratic but sometimes you just don&#8217;t want to pay for it. If that sounds like you I recommend the to beatport burners podcast. This is an interactive podcast that brings you the new release in the scene and you can listen to full versions. When you hear something you like you can use the interactive feature to go directly to beatport and purchase the track.</p>
<p style="text-align:center;"> </p>
<p style="text-align:left;">Another nice source is <a title="Essential Music Blog" href="http://www.essentialmusic.ws" target="_blank">Essential Music Blog</a></p>
<p style="text-align:right;"><a href="http://www.essentialmusic.ws"><img class="alignright" style="margin-left:15px;margin-right:15px;" src="http://www.essentialmusic.ws/wp-content/themes/skd/header.jpg" alt="Essential Music Blog " width="404" height="118" /></a></p>
<p>This is a blog-like site - as the name indicates - where releases are posted. I haven&#8217;t been able to discover if this site is legal, but since it seems to be sponsored by beatport I guess it is. Anyways it&#8217;s an excellent source to discover new artists.</p>
<p>Podcasts:<br />
<strong><a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=155862669&amp;s=143444" target="_blank">Beatport burners (on itunes)</a></strong><br />
<strong><a href="http://beatportpodcast.com/burners.xml" target="_blank">Beatport burners (rss feed)</a></strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/suddenelfilio.wordpress.com/135/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/suddenelfilio.wordpress.com/135/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/suddenelfilio.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/suddenelfilio.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/suddenelfilio.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/suddenelfilio.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/suddenelfilio.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/suddenelfilio.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/suddenelfilio.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/suddenelfilio.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/suddenelfilio.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/suddenelfilio.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.suddenelfilio.net&blog=1463725&post=135&subd=suddenelfilio&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.suddenelfilio.net/2008/08/28/new-found-passion/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/suddenelfilio-128.jpg" medium="image">
			<media:title type="html">suddenelfilio</media:title>
		</media:content>

		<media:content url="http://suddenelfilio.files.wordpress.com/2008/08/beatport_main.jpg?w=420" medium="image" />

		<media:content url="http://www.essentialmusic.ws/wp-content/themes/skd/header.jpg" medium="image">
			<media:title type="html">Essential Music Blog </media:title>
		</media:content>
	</item>
	</channel>
</rss>