<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>WadoLabs Blog</title>
	
	<link>http://blog.wadolabs.com</link>
	<description>Never over architected, just well designed.</description>
	<lastBuildDate>Sun, 03 May 2009 19:07:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WadolabsBlog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="wadolabsblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Keep It Simple, Stupid</title>
		<link>http://blog.wadolabs.com/2009/04/keep-it-simple-stupid/</link>
		<comments>http://blog.wadolabs.com/2009/04/keep-it-simple-stupid/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 21:39:55 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/2009/04/keep-it-simple-stupid/</guid>
		<description><![CDATA[


Great article on the principles of K-I-S-S.  Keep it simple, stupid!!
As an architect, I&#8217;ve learned a lot by doing things the hard way.  It&#8217;s within our nature to be a purist.  We love to dot our I&#8217;s and cross our T&#8217;s.  We try to build the pie in the sky  [...]]]></description>
			<content:encoded><![CDATA[<div style="float:right;margin: 12px;"><script type="text/javascript"><!--
google_ad_client = "pub-6263296153055389";
/* WadoLabs - 468x60, created 4/26/09 */
google_ad_slot = "4811065160";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><p>Great article on the principles of K-I-S-S.  Keep it simple, stupid!!</p>
<p>As an architect, I&#8217;ve learned a lot by doing things the hard way.  It&#8217;s within our nature to be a purist.  We love to dot our I&#8217;s and cross our T&#8217;s.  We try to build the pie in the sky  &#8220;This system is scalable, I can build anything on it!&#8221;  Is that ever true.  I doubt it.</p>
<p>If you are working on a new project, KISS is the way to go.  Keep it simple, quick to market, and release often.  We try to build systems and guess what we need, but in reality we don&#8217;t know, and building a large system for a unknown audience/market, is a big bet.  A bet companies are not willing to pay.  </p>
<p><a href=http://www.techcrunch.com/2009/04/28/keep-it-simple-stupid/>Keep It Simple, Stupid</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/04/keep-it-simple-stupid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Consuming Multiple Web Services with single DISCO file</title>
		<link>http://blog.wadolabs.com/2009/04/consuming-multiple-web-services-with-single-disco-file/</link>
		<comments>http://blog.wadolabs.com/2009/04/consuming-multiple-web-services-with-single-disco-file/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 19:06:55 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/?p=147</guid>
		<description><![CDATA[When working in a Service Oriented Architecture there are two main problems I get asked a lot about.

How do I know when new services are available, or how do I inform others of my new services?
How do I share object types across shared services?

Problem
To put some context around these two main questions.  Traditionally services are [...]]]></description>
			<content:encoded><![CDATA[<p>When working in a Service Oriented Architecture there are two main problems I get asked a lot about.</p>
<ol>
<li>How do I know when new services are available, or how do I inform others of my new services?</li>
<li>How do I share object types across shared services?</li>
</ol>
<p><strong>Problem</strong></p>
<p>To put some context around these two main questions.  Traditionally services are discovered by either searching the source tree or by word of month.  Neither of which is a great solution.  Services are either lost in thousands of lines of code, or lost in communication.</p>
<p>As for sharing object types across services.  By design services are usually developed with in its own domain and shouldn’t share types. But!, in some cases, you might actually have a business need to share certain types.  For instance, if you had two services within the same assembly that referenced a single object, when you created two different service references to the services, two objects will be defined under two different namespaces.</p>
<p><strong>Solution</strong></p>
<p>Disco files were created to answer these two very obvious questions.  With a disco file, developers can maintain a global list of available services.  Every time a new service is created, add the new WSDL URL to the list of services.  This list is the single point of reference when creating a Web or Service Reference.  Also, since there is only one global reference to all the services, the generated code will generate one namespace and recognized that if there are any shared types across services, it will only generate the type once.</p>
<p>Create the disco file number the vroot of your application.  Below is an example disco file.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;color: #FCFFBA;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;color: blue;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;color: #666666;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;color: #666666;">&quot;utf-8&quot;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></span> 
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;color: blue;">&lt;discovery</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;color: #666666;">&quot;http://schemas.xmlsoap.org/disco/&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;color: blue;">&lt;contractRef</span> <span style="color: #000066;">ref</span>=<span style="color: #ff0000;color: #666666;">&quot;http://localhost/ServiceA.svc?wsdl&quot;</span> <span style="color: #000066;">docRef</span>=<span style="color: #ff0000;color: #666666;">&quot;ServiceA.svc&quot;</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;color: #666666;">&quot;http://schemas.xmlsoap.org/disco/scl/&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;color: blue;">&lt;contractRef</span> <span style="color: #000066;">ref</span>=<span style="color: #ff0000;color: #666666;">&quot;http://localhost/ServiceB.svc?wsdl&quot;</span> <span style="color: #000066;">docRef</span>=<span style="color: #ff0000;color: #666666;">&quot;ServiceB.svc&quot;</span> <span style="color: #000066;">xmlns</span>=<span style="color: #ff0000;color: #666666;">&quot;http://schemas.xmlsoap.org/disco/scl/&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;color: blue;">&lt;/discovery<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Consuming the disco file is no different:</p>
<p><a href="http://blog.wadolabs.com/wp-content/uploads/2009/04/servicereference.jpg" rel="lightbox[147]"><img style="border: 0px none; display: block; margin-left: auto; margin-right: auto;" title="ServiceReference" src="http://blog.wadolabs.com/wp-content/uploads/2009/04/servicereference-thumb.jpg" border="0" alt="ServiceReference" width="244" height="200" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/04/consuming-multiple-web-services-with-single-disco-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love Extension Methods</title>
		<link>http://blog.wadolabs.com/2009/04/i-love-extension-methods/</link>
		<comments>http://blog.wadolabs.com/2009/04/i-love-extension-methods/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 06:18:30 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/2009/04/i-love-extension-methods/</guid>
		<description><![CDATA[Extension methods is one of the best things added to .NET.&#160; It’s a great way to share code and helper method with other team members.&#160; Traditionally developers would create Helper Classes or Utility Classes that can perform specific actions related to an object or domain.&#160; The problem with this approach was that there wasn’t an [...]]]></description>
			<content:encoded><![CDATA[<p>Extension methods is one of the best things added to .NET.&#160; It’s a great way to share code and helper method with other team members.&#160; Traditionally developers would create Helper Classes or Utility Classes that can perform specific actions related to an object or domain.&#160; The problem with this approach was that there wasn’t an easy way to discover that these helper or utility classes existed other than searching or asking.&#160; Now with extension methods, these helper methods that are related to the specific object can be discovered simply with the uses of intellisense.&#160; For example if you created an Extension Method on top of System.String, called ReverseString.&#160; All you would have to do is type “myString.ReverseString()”. How easy is that!!</p>
<p>In this example, I’ll show you how to use Extension methods to transform one object to another.&#160; This is a great way to centralize your transformation code. </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;color: #FCFFBA;"><span style="color: #0600FF;color: #B83A24;">using</span> <span style="color: #008080;">System</span><span style="color: #008000;color: #CCC;">;</span>
<span style="color: #0600FF;color: #B83A24;">using</span> <span style="color: #008080;">System.Collections.Generic</span><span style="color: #008000;color: #CCC;">;</span>
<span style="color: #0600FF;color: #B83A24;">using</span> <span style="color: #008080;">System.Linq</span><span style="color: #008000;color: #CCC;">;</span>
<span style="color: #0600FF;color: #B83A24;">using</span> <span style="color: #008080;">System.Text</span><span style="color: #008000;color: #CCC;">;</span>
&nbsp;
<span style="color: #0600FF;color: #B83A24;">namespace</span> ExtensionTest
<span style="color: #000000;color: #CCC;">&#123;</span>
    <span style="color: #FF0000;color: #343832;">class</span> Program
    <span style="color: #000000;color: #CCC;">&#123;</span>
        <span style="color: #0600FF;color: #B83A24;">static</span> <span style="color: #0600FF;color: #B83A24;">void</span> Main<span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #FF0000;color: #343832;">string</span><span style="color: #000000;color: #CCC;">&#91;</span><span style="color: #000000;color: #CCC;">&#93;</span> args<span style="color: #000000;color: #CCC;">&#41;</span>
        <span style="color: #000000;color: #CCC;">&#123;</span>
            Butterfly butterfly <span style="color: #008000;color: #CCC;">=</span> <span style="color: #008000;color: #8FB394;">new</span> Caterpillar<span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #000000;color: #CCC;">&#41;</span>.<span style="color: #0000FF;">ToButterfly</span><span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #000000;color: #CCC;">&#41;</span><span style="color: #008000;color: #CCC;">;</span>
        <span style="color: #000000;color: #CCC;">&#125;</span>
    <span style="color: #000000;color: #CCC;">&#125;</span>
&nbsp;
    <span style="color: #0600FF;color: #B83A24;">public</span> <span style="color: #0600FF;color: #B83A24;">static</span> <span style="color: #FF0000;color: #343832;">class</span> Extensions
    <span style="color: #000000;color: #CCC;">&#123;</span>
        <span style="color: #0600FF;color: #B83A24;">public</span> <span style="color: #0600FF;color: #B83A24;">static</span> Butterfly ToButterfly<span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #0600FF;color: #B83A24;">this</span> Caterpillar caterpillar<span style="color: #000000;color: #CCC;">&#41;</span>
        <span style="color: #000000;color: #CCC;">&#123;</span>
            <span style="color: #0600FF;color: #B83A24;">return</span> <span style="color: #008000;color: #8FB394;">new</span> Butterfly<span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #000000;color: #CCC;">&#41;</span> <span style="color: #000000;color: #CCC;">&#123;</span> Name <span style="color: #008000;color: #CCC;">=</span> caterpillar.<span style="color: #0000FF;">Name</span> <span style="color: #000000;color: #CCC;">&#125;</span><span style="color: #008000;color: #CCC;">;</span>
        <span style="color: #000000;color: #CCC;">&#125;</span>
    <span style="color: #000000;color: #CCC;">&#125;</span>
&nbsp;
    <span style="color: #0600FF;color: #B83A24;">public</span> <span style="color: #FF0000;color: #343832;">class</span> Caterpillar
    <span style="color: #000000;color: #CCC;">&#123;</span>
        <span style="color: #0600FF;color: #B83A24;">public</span> <span style="color: #FF0000;color: #343832;">string</span> Name <span style="color: #000000;color: #CCC;">&#123;</span> get<span style="color: #008000;color: #CCC;">;</span> set<span style="color: #008000;color: #CCC;">;</span> <span style="color: #000000;color: #CCC;">&#125;</span>
    <span style="color: #000000;color: #CCC;">&#125;</span>
&nbsp;
    <span style="color: #0600FF;color: #B83A24;">public</span> <span style="color: #FF0000;color: #343832;">class</span> Butterfly
    <span style="color: #000000;color: #CCC;">&#123;</span>
        <span style="color: #0600FF;color: #B83A24;">public</span> <span style="color: #FF0000;color: #343832;">string</span> Name <span style="color: #000000;color: #CCC;">&#123;</span> get<span style="color: #008000;color: #CCC;">;</span> set<span style="color: #008000;color: #CCC;">;</span> <span style="color: #000000;color: #CCC;">&#125;</span>
    <span style="color: #000000;color: #CCC;">&#125;</span>
<span style="color: #000000;color: #CCC;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/04/i-love-extension-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up my Virtual Development Workstation</title>
		<link>http://blog.wadolabs.com/2009/03/setting-up-my-virtual-development-workstation/</link>
		<comments>http://blog.wadolabs.com/2009/03/setting-up-my-virtual-development-workstation/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 03:00:34 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Macbook Pro]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/2009/03/setting-up-my-virtual-development-workstation/</guid>
		<description><![CDATA[As some of you may know, I&#8217;ve been doing all my development 100% on a MacBook Pro, running VMware Fusion, running Windows Server 2008.&#160; Recently my install of visual studio started acting up (not due to the laptop or VMware) but because of a bad install.&#160; 
Being the bad developer, I didn&#8217;t snapshot my image,&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>As some of you may know, I&#8217;ve been doing all my development 100% on a MacBook Pro, running VMware Fusion, running Windows Server 2008.&#160; Recently my install of visual studio started acting up (not due to the laptop or VMware) but because of a bad install.&#160; </p>
<p>Being the bad developer, I didn&#8217;t snapshot my image,&#160; so now I&#8217;m going through the process of creating a new image.&#160; And as I&#8217;m going through this process, I&#8217;m starting to realize I&#8217;m installing less and less on my dev machines. </p>
<p>So here is a list of software I needed:</p>
<ul>
<li>Visual Studio 2008 SP1 </li>
<li>Microsoft SQL Server 2008 </li>
<li>Microsoft Office 2007 </li>
<li>IIS7 </li>
</ul>
<p>That&#8217;s all I need on a daily basis.&#160; The install has a small footprint and runs a lot quicker.&#160; I&#8217;m starting to believe, setting up multiple VM with only the minimum required software on each machine is the way to go.&#160; This allows me to turn on an off VM&#8217;s as I need them.&#160; The machine can allocate 100% of its dedicated resource when it&#8217;s on and free it up once its off. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/03/setting-up-my-virtual-development-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scott Hanselman at Mix09 talks about MVC 1.0 and NerdDinner.com</title>
		<link>http://blog.wadolabs.com/2009/03/scott-hanselman-at-mix09-talks-about-mvc-10-and-nerddinnercom/</link>
		<comments>http://blog.wadolabs.com/2009/03/scott-hanselman-at-mix09-talks-about-mvc-10-and-nerddinnercom/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 18:05:23 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MIX09]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/?p=87</guid>
		<description><![CDATA[Here is a great presentation by Scott Hanselman demonstrating MVC 1.0 and how he created NerdDinner.com with it.  He talks about the nuts and bolts of MVC, but also talk a bit about how MVC lends itself to support different roles within an engineering organization.  Service developers only need to worry about the Service Layer [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a great presentation by Scott Hanselman demonstrating MVC 1.0 and how he created <a href="http://www.nerddinner.com">NerdDinner.com</a> with it.  He talks about the nuts and bolts of MVC, but also talk a bit about how MVC lends itself to support different roles within an engineering organization.  Service developers only need to worry about the Service Layer and UI developers only needs to worry about the Presentation Layer.  MVC is great at separation of concerns.  Sit back and relax, its a long video, but well worth it.</p>
<p>CodePlex Project: <a href="http://nerddinner.codeplex.com">http://nerddinner.codeplex.com</a></p>
<div class="wp-caption alignnone" style="width: 494px"><a href="http://sessions.visitmix.com/MIX09/T49F" target="_blank"><img title="Scott Hanselman - Mix09 NerdDinner.com" src="http://www.hanselman.com/blog/content/binary/WindowsLiveWriter/MobileBrowserDefinitionFileandMob.NETMVC_8F67/image_10.png" alt="Scott Hanselman - Mix09 NerdDinner.com" width="484" height="272" /></a><p class="wp-caption-text">Scott Hanselman - Mix09 NerdDinner.com</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/03/scott-hanselman-at-mix09-talks-about-mvc-10-and-nerddinnercom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to migrate to a new domain without breaking your Google search results</title>
		<link>http://blog.wadolabs.com/2009/03/how-to-migrate-to-a-new-domain-without-breaking-your-google-search-results/</link>
		<comments>http://blog.wadolabs.com/2009/03/how-to-migrate-to-a-new-domain-without-breaking-your-google-search-results/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 20:33:30 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/2009/03/how-to-migrate-to-a-new-domain-without-breaking-your-google-search-results/</guid>
		<description><![CDATA[Last week I moved my domain from http://www.wadolabs.com/blog to http://blog.wadolabs.com.&#160; It was a simple migration as far as my application and data goes. But what about all the links and referring sites?&#160; Plus the indexes that Google already had on my site.&#160; I didn’t want all my pages to all of the sudden disappear and [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I moved my domain from <a href="http://www.wadolabs.com/blog">http://www.wadolabs.com/blog</a> to <a href="http://blog.wadolabs.com">http://blog.wadolabs.com</a>.&#160; It was a simple migration as far as my application and data goes. But what about all the links and referring sites?&#160; Plus the indexes that Google already had on my site.&#160; I didn’t want all my pages to all of the sudden disappear and my visitors to run into a huge 404 error.&#160; So I had a simple solution.&#160; I created a new application under <a href="http://www.wadolabs.com/blog">http://www.wadolabs.com/blog</a> and only added a global.asax file to the application.&#160; On the Application_BeginRequest() method, I added the following lines of code.</p>
</p>
<div class="wlWriterEditableSmartContent" id="scid:812469c5-0cb0-4c63-8c15-c81123a09de7:26c8edf4-6d21-48a1-8188-60021596a66a" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="csharp" style="font-family:monospace;color: #FCFFBA;"><span style="color: #0600FF;color: #B83A24;">protected</span> <span style="color: #0600FF;color: #B83A24;">void</span> Application_BeginRequest<span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #FF0000;color: #343832;">object</span> sender, EventArgs e<span style="color: #000000;color: #CCC;">&#41;</span>
<span style="color: #000000;color: #CCC;">&#123;</span>
    Response.<span style="color: #0000FF;">Clear</span><span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #000000;color: #CCC;">&#41;</span><span style="color: #008000;color: #CCC;">;</span>
    Response.<span style="color: #0000FF;">Status</span> <span style="color: #008000;color: #CCC;">=</span> <span style="color: #666666;color: #666666;">&quot;301 Moved Permanently&quot;</span><span style="color: #008000;color: #CCC;">;</span>
    Response.<span style="color: #0000FF;">AddHeader</span><span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #666666;color: #666666;">&quot;Location&quot;</span>, <span style="color: #666666;color: #666666;">&quot;http://blog.wadolabs.com&quot;</span><span style="color: #000000;color: #CCC;">&#41;</span><span style="color: #008000;color: #CCC;">;</span>
    Response.<span style="color: #0000FF;">End</span><span style="color: #000000;color: #CCC;">&#40;</span><span style="color: #000000;color: #CCC;">&#41;</span><span style="color: #008000;color: #CCC;">;</span>
<span style="color: #000000;color: #CCC;">&#125;</span></pre></td></tr></table></div>

</div>
<p>This redirects your site via a 301 HTTP response code to the your new site.&#160; In my case <a href="http://blog.wadolabs.com">http://blog.wadolabs.com</a> .&#160; This keeps all my current links active and avoided a big fat 404 error.&#160; You can do more sophisticated logic here and check the requested page and map the request to the new location, but for me, I was okay just doing a global redirect to the root of my new domain. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/03/how-to-migrate-to-a-new-domain-without-breaking-your-google-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Azure – Geolocation and Non .NET Support</title>
		<link>http://blog.wadolabs.com/2009/03/azure-geolocation-and-non-net-support/</link>
		<comments>http://blog.wadolabs.com/2009/03/azure-geolocation-and-non-net-support/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 19:46:54 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/?p=75</guid>
		<description><![CDATA[Azure updated the beta offering to include several new exciting new features.  Developers can now host their data in two geographically seperate data center, which enhances performance and avaliability.  Also, they are adding the ability to run non-.NET code on the Azure Platform via FastCGI.  For example developers can run PHP or Ruby on the [...]]]></description>
			<content:encoded><![CDATA[<p>Azure updated the beta offering to include several new exciting new features.  Developers can now host their data in two geographically seperate data center, which enhances performance and avaliability.  Also, they are adding the ability to run non-.NET code on the Azure Platform via <a href="http://en.wikipedia.org/wiki/FastCGI">FastCGI</a>.  For example developers can run PHP or Ruby on the Azure Platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/03/azure-geolocation-and-non-net-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET MVC 1.0 Released</title>
		<link>http://blog.wadolabs.com/2009/03/aspnet-mvc-10-released/</link>
		<comments>http://blog.wadolabs.com/2009/03/aspnet-mvc-10-released/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 18:51:07 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[REST]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/?p=69</guid>
		<description><![CDATA[After a long wait, Microsoft has finally released ASP.NET MVC 1.0.  I&#8217;ve been following the progress of the product on ScottGu&#8217;s blog since day one.  From the looks of things, its seems pretty solid.  I&#8217;ll play with the final release later tonight and post my overall impressions.  I&#8217;m curious how people intend to use MVC [...]]]></description>
			<content:encoded><![CDATA[<p>After a long wait, Microsoft has finally released ASP.NET MVC 1.0.  I&#8217;ve been following the progress of the product on ScottGu&#8217;s blog since day one.  From the looks of things, its seems pretty solid.  I&#8217;ll play with the final release later tonight and post my overall impressions.  I&#8217;m curious how people intend to use MVC within their applications.   Some people argue MVC is not only a Web Framwork for your presentation layer, but it can be a framework for building RESTful Services.  What will people choose? MVC or WCF to build their RESTful services?  Only time will tell.</p>
<p>Download the installer here:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=53289097-73ce-43bf-b6a6-35e00103cb4b&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=53289097-73ce-43bf-b6a6-35e00103cb4b&amp;displaylang=en</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/03/aspnet-mvc-10-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight 3 Beta</title>
		<link>http://blog.wadolabs.com/2009/03/silverlight-3-beta/</link>
		<comments>http://blog.wadolabs.com/2009/03/silverlight-3-beta/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 18:21:00 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/?p=67</guid>
		<description><![CDATA[Silverlight 3 beta and Expression Blend 3 announced today at Mix09.  This is very exciting. Tons of new enhancements plus performance upgrades with graphics acceleration.  The one feature I&#8217;m really interested in, is the out of browser support.  This mean .NET running on a Mac!!  (not like mono, the real way).
Get the lastest installers here:
http://silverlight.net/getstarted/silverlight3/default.aspx
]]></description>
			<content:encoded><![CDATA[<p>Silverlight 3 beta and Expression Blend 3 announced today at Mix09.  This is very exciting. Tons of new enhancements plus performance upgrades with graphics acceleration.  The one feature I&#8217;m really interested in, is the out of browser support.  This mean .NET running on a Mac!!  (not like mono, the real way).</p>
<p>Get the lastest installers here:</p>
<p><a href="http://silverlight.net/getstarted/silverlight3/default.aspx">http://silverlight.net/getstarted/silverlight3/default.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/03/silverlight-3-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mix09 Live Coverage</title>
		<link>http://blog.wadolabs.com/2009/03/mix09-live-coverage/</link>
		<comments>http://blog.wadolabs.com/2009/03/mix09-live-coverage/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 16:25:37 +0000</pubDate>
		<dc:creator>edward</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.wadolabs.com/?p=63</guid>
		<description><![CDATA[Unable to attend Mix09?  Watch live coverage here http://live.visitmix.com/
]]></description>
			<content:encoded><![CDATA[<p>Unable to attend Mix09?  Watch live coverage here <a href="http://live.visitmix.com/">http://live.visitmix.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wadolabs.com/2009/03/mix09-live-coverage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
