<?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>DB&#039;s Tech Blog</title>
	<atom:link href="http://david.bellette.net/tech/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://david.bellette.net/tech</link>
	<description>.NET Development, Architecture, Project Management, IVR Systems</description>
	<lastBuildDate>Wed, 30 Mar 2011 10:09:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Borders Books &#8211; Online Purchases &#8211; Don&#8217;t get caught out</title>
		<link>http://david.bellette.net/tech/?p=246</link>
		<comments>http://david.bellette.net/tech/?p=246#comments</comments>
		<pubDate>Thu, 24 Feb 2011 10:13:59 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Borders Books]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=246</guid>
		<description><![CDATA[Recently, I had need to purchase a few technical books from Borders Online and this details my experience....]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=246</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entity Framework 4 (EF4) with Visual Studio 2010 and Pluralisation</title>
		<link>http://david.bellette.net/tech/?p=225</link>
		<comments>http://david.bellette.net/tech/?p=225#comments</comments>
		<pubDate>Sat, 29 Jan 2011 19:16:33 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET 4]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[EF4]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[MVC3]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=225</guid>
		<description><![CDATA[With the recent release of Microsoft's EF4 with Visual Studio there is some debate around the use of pluralisation of table names.

Standard database theory is taught to use singular entity names, i.e. Genre and the table names should match this singular naming convention, i.e. Genre not Genres. 

With EF4, whether using the Code First (CF) features or not, the table names are expected to be pluralised. This is an issue if you prefer to stick with the singularised table names or don't have a choice on pre-existing databases. It is difficult to change an existing database, especially if that database is being used by other programs or reports within an organisation. This also causes some conflicts when an entity such as Person is used - the EF pluralises this as Persons but perhaps People would be a better option.

This post shows how to get around the EF pluralisation for whatever reason you need.]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=225</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error: IIS SSL certificate re-issue and the issuer of the certificate not being trusted with the error : &#8220;The issuer of this certificate could not be found&#8221;</title>
		<link>http://david.bellette.net/tech/?p=217</link>
		<comments>http://david.bellette.net/tech/?p=217#comments</comments>
		<pubDate>Sun, 10 Oct 2010 02:15:16 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=217</guid>
		<description><![CDATA[I recently had need to renew a client's IIS SSL certificate on their behalf as it had expired.

Generating the renewal request was easy in IIS using IIS Manager. It was sent off to the issuer and a new certificate quickly received.

Importing the new certificate into IIS was also easy using IIS Manager, however, once imported IIS reported the certificate issuer could not be verified and digging further "The issuer of this certificate could not be found". WTF? It was working from the same provider previously and Thawte are a well known authority.
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=217</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code-First Development with Entity Framework 4</title>
		<link>http://david.bellette.net/tech/?p=209</link>
		<comments>http://david.bellette.net/tech/?p=209#comments</comments>
		<pubDate>Sun, 18 Jul 2010 00:42:03 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET 4]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=209</guid>
		<description><![CDATA[The EF Code-First Library is a very cool feature of the Visual Studio 2010 tools that will allow developers to get their applications running quickly - a full persistent data entity model can be created without having to configure a database, run any tools, configure any XML files, or define any base data entity classes. One of the coolest things is the way the database model can be changed automatically when changes to the entity model are made and the automatic creation of the primary keys and relationships between the tables. This should be a real time saver to developers.
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=209</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bikes and Video</title>
		<link>http://david.bellette.net/tech/?p=197</link>
		<comments>http://david.bellette.net/tech/?p=197#comments</comments>
		<pubDate>Sat, 24 Apr 2010 23:40:29 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Recreational]]></category>
		<category><![CDATA[bike]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=197</guid>
		<description><![CDATA[I've recently gained my motor bike licence after professing for years that I would never ride and expressing surprise with those friends and family who pursued the same avenue. I've got to say it is VERY addictive!

]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=197</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 and .NET 4 officially released today</title>
		<link>http://david.bellette.net/tech/?p=194</link>
		<comments>http://david.bellette.net/tech/?p=194#comments</comments>
		<pubDate>Tue, 13 Apr 2010 11:56:52 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=194</guid>
		<description><![CDATA[Visual Studio 2010 and .NET 4 officially released today. http://weblogs.asp.net/scottgu/archive/2010/04/12/visual-studio-2010-and-net-4-released.aspx Enjoy!]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=194</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio 2010 Pending Release</title>
		<link>http://david.bellette.net/tech/?p=185</link>
		<comments>http://david.bellette.net/tech/?p=185#comments</comments>
		<pubDate>Wed, 07 Apr 2010 10:11:59 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET 4]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=185</guid>
		<description><![CDATA[With the pending release of Visual Studio 2010 (scheduled for 13 April 2010), Scott Guthrie (Corp VP of Microsoft Developer Division) has been writing a serious of blog posts about the changes coming with Visual Studio 2010 and .NET 4.]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=185</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET web.config WCF Settings</title>
		<link>http://david.bellette.net/tech/?p=162</link>
		<comments>http://david.bellette.net/tech/?p=162#comments</comments>
		<pubDate>Fri, 19 Feb 2010 12:31:33 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=162</guid>
		<description><![CDATA[I love the way the .NET web.config file allows the appSettings and connectionStrings sections to reference another file. It provides easy support for differing deployment environments as the settings for each environment are kept in their own files and can be switched in out by changing the configSource attributes, as per the example below: &#60;appSettings [...]]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=162</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OziExplorer Tracklog File Format</title>
		<link>http://david.bellette.net/tech/?p=150</link>
		<comments>http://david.bellette.net/tech/?p=150#comments</comments>
		<pubDate>Tue, 16 Feb 2010 01:01:47 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[GPS]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[oziexplorer]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=150</guid>
		<description><![CDATA[I searched around the web high and low and could only find limited information on the OziExplorer tracklog file format that is stored in the .plt files. 

OziExplorer has PC and Windows Mobile versions making it a great tool for tracking/logging and planning your travels. Tracklogs save your tracks as you travel: saving on your portable mobile device saves space in your vehicle (or even in your pocket!) and allows you to copy the tracklog files to your PC for viewing on the big screen later.

On our recent trip around Australia, we saved all of our treks using OziExplorer.

My analysis has determined the following from two versions v2.1 and v2.0
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=150</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baited Remote Underwater Video Stations</title>
		<link>http://david.bellette.net/tech/?p=137</link>
		<comments>http://david.bellette.net/tech/?p=137#comments</comments>
		<pubDate>Fri, 05 Feb 2010 21:37:27 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[entertainment]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=137</guid>
		<description><![CDATA[Anyone that knows me well will know that I am a scuba diver, so this little gem really pleased me.

The Courier Mail reports about Baited Remote Underwater Video Stations (BRUVS) that have been deployed on the Great Barrier Reef to bring live video to viewers. This one was a little short lived when a tiger shark decides it'd make a great meal after spitting out a sea snake. 

Links to the video can be seen by opening the full article.]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=137</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten things to do with your new friend PALRO</title>
		<link>http://david.bellette.net/tech/?p=134</link>
		<comments>http://david.bellette.net/tech/?p=134#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:14:56 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[robot]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=134</guid>
		<description><![CDATA[Here's my official order for next Xmas...

Ten things to do with your new friend PALRO.

I wonder if I can get it to write software, was the car, sweep the floors?

Enjoy!
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=134</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specifying/changing the database when using Web Parts in an ASP.NET application</title>
		<link>http://david.bellette.net/tech/?p=123</link>
		<comments>http://david.bellette.net/tech/?p=123#comments</comments>
		<pubDate>Wed, 03 Feb 2010 09:07:10 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[web parts]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=123</guid>
		<description><![CDATA[When using Web Parts in an ASP.NET application, if personalization is enabled (which is the best reason for using Web Parts), the personalization is stored in a SQL database.

This article details the steps to set this up or to change the default location. The default is the sql express instance on a development machine - my preference is for the SQL 2008 database on my network, but you will also need to specify the database to use when deploying your application.

The database used by the WebPart, or more precisely the WebPartManager, is the same one used by the membership and role providers. To create the database on either SQL2005 or SQL2008, run <em>aspnet_regsql</em> from the <em>C:\Windows\Microsoft.NET\Framework\v2.0.50727</em> folder. This will run a wizard allowing you to specify where you would like the database created - you will need an instance of SQL Server 2005 or 2008 installed before doing this.
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=123</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>God mode on Windows 7</title>
		<link>http://david.bellette.net/tech/?p=73</link>
		<comments>http://david.bellette.net/tech/?p=73#comments</comments>
		<pubDate>Mon, 11 Jan 2010 03:31:16 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=73</guid>
		<description><![CDATA[This article details a neat little (trivial) undocumented feature of Windows you may find useful.]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Configure FreeSWITCH on Windows</title>
		<link>http://david.bellette.net/tech/?p=81</link>
		<comments>http://david.bellette.net/tech/?p=81#comments</comments>
		<pubDate>Sun, 10 Jan 2010 12:19:03 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IVR]]></category>
		<category><![CDATA[VOIP]]></category>
		<category><![CDATA[freeswitch]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=81</guid>
		<description><![CDATA[This article details the steps to get open source PBX/IVR platform FreeSWITCH working on a Windows platform without the need to know how FreeSWITCH works. It is a simple introduction to get it working out of the box with iiNet.

FreeSWITCH is an open source VOIP platform. FreeSWITCH has a pretty lousy user interface - just the console I/O. There's not much available out on the web either.

I found information available on the FreeSWITCH Wiki to be vague and lacking a step-by-step approach.
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=81</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Registry interaction with 64 and 32 bit applications</title>
		<link>http://david.bellette.net/tech/?p=69</link>
		<comments>http://david.bellette.net/tech/?p=69#comments</comments>
		<pubDate>Thu, 07 Jan 2010 00:38:17 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[32 bit]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[WOW64]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=69</guid>
		<description><![CDATA[Windows 7 and Vista 64 bit application modes bring some new challenges with applications that use the registry to store settings for program use during run time.

If using the registry, software applications typically store their settings under HKEY_LOCAL_MACHINE/SOFTWARE within a registry key created for the specific application, e.g. HKEY_LOCAL_MACHINE/SOFTWARE/MyApplication

When installing a 32 bit application on a 64 bit version of these operating systems, Windows doesn't clutter these registry keys with the 64 bit applications instead places them in their own 'special' area.

]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=69</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrieving COM class factory failed due to the following error: 80040154</title>
		<link>http://david.bellette.net/tech/?p=65</link>
		<comments>http://david.bellette.net/tech/?p=65#comments</comments>
		<pubDate>Thu, 07 Jan 2010 00:22:25 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[32 bit]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[WOW64]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=65</guid>
		<description><![CDATA[When installing a new version of Windows 7 (64 bit), I came across this error when attempting to run one of my web services:

Retrieving COM class factory failed due to the following error: 80040154

No real explaination on what component was causing the problem, but stepping into the code, there is a dependency on a third party COM DLL to communicate with a remote server. The COM component is 32 bit - getting it to run in the 64 bit environment is the issue.
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=65</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrated security with IIS and .NET</title>
		<link>http://david.bellette.net/tech/?p=57</link>
		<comments>http://david.bellette.net/tech/?p=57#comments</comments>
		<pubDate>Wed, 06 Jan 2010 23:52:22 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=57</guid>
		<description><![CDATA[Setting up a new Windows 7 machine had me challenged remembering all of the things that need to be done to get my .NET applications all working again, especially ones that use any kind of integrated windows security with IIS, and connect to a database and web services.

The main one that gets me thinking everytime is the impersonation account if a Windows' account is setup to connect to a database. This would typical be needed when connecting to a web service that connects to a database. One way to achieve this is to use SQL security to maintain the account and store the user/password in the web.config but this has some security concerns in that the password is stored in clear text. This also requires the password to maintained in multiple places, which is not desirable.
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=57</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS Hosted WCF Service Fails</title>
		<link>http://david.bellette.net/tech/?p=48</link>
		<comments>http://david.bellette.net/tech/?p=48#comments</comments>
		<pubDate>Tue, 05 Jan 2010 13:10:00 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=48</guid>
		<description><![CDATA[When attempting to get a new machine running, I have come across an issue getting IIS hosted WCF services to instantiate.

The error is typically something like the following:

Unhandled Exception: System.ServiceModel.ProtocolException: The remote server returned an unexpected response: (405) Method not allowed.

This can occur if ASP.NET isn't installed or the .svc file is not mapped to the aspnet_isapi.dll
]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=48</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting IIS Debugging and WCF working under Vista and Windows 7 with VS2008</title>
		<link>http://david.bellette.net/tech/?p=38</link>
		<comments>http://david.bellette.net/tech/?p=38#comments</comments>
		<pubDate>Tue, 05 Jan 2010 12:55:23 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=38</guid>
		<description><![CDATA[After installing VS2008 on Vista and attempting to fire up a WCF application built with a .NET framework I built a couple of years ago now, I found the WCF channel was failing with no hint as to the problem. This issue also applies for running on Windows 7.

The framework architecture hosts the WCF service in IIS. When opening the solution with VS2008, I was presented with the need to run VS as an administrator. That problem is sorted easily enough, but is a bit intrusive.

]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=38</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WinForms applications &#8211; No Touch Deployment (NTD) and gotchas</title>
		<link>http://david.bellette.net/tech/?p=25</link>
		<comments>http://david.bellette.net/tech/?p=25#comments</comments>
		<pubDate>Tue, 05 Jan 2010 12:34:32 +0000</pubDate>
		<dc:creator>David Bellette</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[WinForms]]></category>

		<guid isPermaLink="false">http://david.bellette.net/tech/?p=25</guid>
		<description><![CDATA[Often when .NET WinForms applications are created, developers do not consider the various deployment options available and panic when it comes time for deployment and default to using ClickOnce. This is not a good strategy as the architecture of the application is not well considered with this in mind and limits the deployment options.

]]></description>
		<wfw:commentRss>http://david.bellette.net/tech/?feed=rss2&#038;p=25</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

