<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>Microsoft CRM</title>
        <link>http://geekswithblogs.net/WesWeeks/category/8064.aspx</link>
        <description>Everything CRM related</description>
        <language>en-US</language>
        <copyright>Wes Weeks</copyright>
        <managingEditor>wes.weeks@tricension.com</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <item>
            <title>Using external assemblies with CRM 4.0 Plugins</title>
            <link>http://geekswithblogs.net/WesWeeks/archive/2009/02/23/129625.aspx</link>
            <description>&lt;p&gt;When developing for CRM, we like to keep our business login contained within its own class to be shared and used by other parts of the system.  Most all of our CRM implementations have other applications accessing CRM in one way or another so this approach works well.  This was fairly straight forward wtih the 3.0 callout model, you just had to put them in the same directory with your custom callout  (C:\Program Files\Microsoft CRM\Server\bin\assembly\  in most cases) . &lt;/p&gt;
&lt;p&gt;The way around this is to either put your assemblies in the GAC, or drop the assemblies in the bin directory of the CRM Web application (which is the route we chose).&lt;/p&gt;
&lt;p&gt;Another caveat is your assemblies MUST be signed.  This was a bit of a pain to get working because we had a few unsigned third party assemblies and a signed assemblie can only reference other signed assemblies.  Probably the biggest issue was the Plugin deployment tool registered the unsigned assemblies without any issue, and we were without any error messages explaining why our code wasn't running.  In CRM 3.0 you could use unsigned assemblies by setting a config setting to 'allowUnsignedAssemblies' to true.&lt;/p&gt;
&lt;p&gt;Hope these two pointers helps you out with your development...&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129625"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=129625" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/WesWeeks/aggbug/129625.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wes Weeks</dc:creator>
            <guid>http://geekswithblogs.net/WesWeeks/archive/2009/02/23/129625.aspx</guid>
            <pubDate>Mon, 23 Feb 2009 21:39:19 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/WesWeeks/comments/129625.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/WesWeeks/archive/2009/02/23/129625.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/WesWeeks/comments/commentRss/129625.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/WesWeeks/services/trackbacks/129625.aspx</trackback:ping>
        </item>
        <item>
            <title>Entity Typecode not found in Metadata Cache</title>
            <link>http://geekswithblogs.net/WesWeeks/archive/2008/09/07/124984.aspx</link>
            <description>&lt;p&gt;While performing an update to some code originally written for CRM 3.0 which I was upgrading to 4.0 and using the new 2007 version of the web services, I found myself getting an unusual error during one of the callouts.  The code created a new custom entity from the data in an existing entity.  This code was orginally written by another party and I"m not sure why they didn't use the mapping features in CRM to do this but it was coded manually.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The entity with typecode '8' was not found in the Metadata Cache.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Never having seen this before it of course took a lot of time digging through the event viewer and trace logs to find the source of the error.  In this case, it came down to one line:&lt;/p&gt;
&lt;p&gt;newEntity.OwnerId = originalEntity.OwnerId&lt;/p&gt;
&lt;p&gt;In a nutshell: the 'type' attribute on the originalEntity which had just been read out of CRM using the web services was '8', however when creating/setting the type on create the attribute field needs to be the name of the entity.  In this case, since the owner was a system user, the type field needed to be set to 'systemuser'&lt;/p&gt;
&lt;p&gt;One would think that the inbound and outbound values could be the same or possible set up to parse for both a type code of or the type name..... &lt;/p&gt;
&lt;p&gt;Anyway, if someone else comes across this or a similar problem, I hope this helps.&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=124984"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=124984" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/WesWeeks/aggbug/124984.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wes Weeks</dc:creator>
            <guid>http://geekswithblogs.net/WesWeeks/archive/2008/09/07/124984.aspx</guid>
            <pubDate>Sun, 07 Sep 2008 12:12:14 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/WesWeeks/comments/124984.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/WesWeeks/archive/2008/09/07/124984.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/WesWeeks/comments/commentRss/124984.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/WesWeeks/services/trackbacks/124984.aspx</trackback:ping>
        </item>
        <item>
            <title>Microsoft Dynamics 4.0 Installer Gripe</title>
            <link>http://geekswithblogs.net/WesWeeks/archive/2008/08/29/124797.aspx</link>
            <description>&lt;p&gt;The CRM 4.0 installer has a nice new feature.  The ability to get upgraded setup files prior to running the instalation.  A nice step forward to hopefully address setup issues which are often present in the first release of the components.&lt;/p&gt;
&lt;p&gt;Now for my Grip...&lt;/p&gt;
&lt;p&gt;I've rarely been lucky enough to get it right the first time.  Usually I have to run the installer, fix a few things, and repeat until succesful.&lt;/p&gt;
&lt;p&gt;The problem is that their isn't any 'memory' of the upgraded setup files.  If you have to run the installer a second time, you have to download the files again.  The connection I had was slow enough that it took nearly 20 minutes to update the setup files the first time.  When it came around to do it again, I wasn't patient enough to even consider going through that pain a second time and skipped the update.  I'd prefer not to go with that approach ;)&lt;/p&gt;
&lt;p&gt;So if anyone from the MS team gets this message somehow, keep the upgrade strategy but provide a way for the updates to e maintaned or downloaded as a seperate file.  Will help us in he trenches out quite a bit.&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=124797"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=124797" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/WesWeeks/aggbug/124797.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wes Weeks</dc:creator>
            <guid>http://geekswithblogs.net/WesWeeks/archive/2008/08/29/124797.aspx</guid>
            <pubDate>Fri, 29 Aug 2008 15:41:19 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/WesWeeks/comments/124797.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/WesWeeks/archive/2008/08/29/124797.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/WesWeeks/comments/commentRss/124797.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/WesWeeks/services/trackbacks/124797.aspx</trackback:ping>
        </item>
        <item>
            <title>CRM 3.0 to 4.0 upgrade error</title>
            <link>http://geekswithblogs.net/WesWeeks/archive/2008/08/28/124781.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;While performing an upgrade from Microsoft Dynamics CRM 3.0 to 4.0, the upgrade installer halted early on with the following error message:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Microsoft.Crm.Setup.Server.ShutdownCrmServerAction failed&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Turns out that at some point the IIS Admin service was shutdown and disabled.  Not sure how this occured since I had been running CRM 3.0 just prior to the install.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;So if you get unlucky enough to get this message, open up your services and Enable/Restart your IIS admin service.  The setup continued without a hitch after that.&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=124781"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=124781" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/WesWeeks/aggbug/124781.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wes Weeks</dc:creator>
            <guid>http://geekswithblogs.net/WesWeeks/archive/2008/08/28/124781.aspx</guid>
            <pubDate>Fri, 29 Aug 2008 04:10:21 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/WesWeeks/comments/124781.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/WesWeeks/archive/2008/08/28/124781.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/WesWeeks/comments/commentRss/124781.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/WesWeeks/services/trackbacks/124781.aspx</trackback:ping>
        </item>
        <item>
            <title>HeaderAuthentica­tionProvider doesn't exist</title>
            <link>http://geekswithblogs.net/WesWeeks/archive/2008/04/25/121653.aspx</link>
            <description>&lt;p&gt;Another issue that may be faced when deploying custom .Net applications in the CRM root directory is the following error:&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;'Microsoft.Crm.WebServices.Crm2007.MultipleOrganizationSoapHeaderAuthentica­tionProvider, &lt;br /&gt;
Microsoft.Crm.WebServices, Version=4.0.0.0, Culture=neutral, &lt;br /&gt;
PublicKeyToken=31bf3856ad364e35' doesn't exist.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;You can resolve this one of two ways...&lt;/p&gt;
&lt;p&gt;1.  Add the following to your applications web.config (not CRM's web.config!)&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&amp;lt;assemblies&amp;gt; &lt;br /&gt;
&lt;/font&gt;&lt;font face="Arial"&gt;&amp;lt;clear/&amp;gt;&lt;br /&gt;
&lt;/font&gt;&lt;font face="Arial"&gt;&amp;lt;add assembly="*"/&amp;gt;&lt;br /&gt;
&amp;lt;/assemblies&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;2.  Go to the crm bin directory for IIS and either copy the Microsoft CRM.WebServices.dll to the GAC or to the bin directory of your custom ASP.Net application&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=121653"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=121653" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/WesWeeks/aggbug/121653.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wes Weeks</dc:creator>
            <guid>http://geekswithblogs.net/WesWeeks/archive/2008/04/25/121653.aspx</guid>
            <pubDate>Fri, 25 Apr 2008 22:08:57 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/WesWeeks/comments/121653.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/WesWeeks/archive/2008/04/25/121653.aspx#feedback</comments>
            <slash:comments>4</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/WesWeeks/comments/commentRss/121653.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/WesWeeks/services/trackbacks/121653.aspx</trackback:ping>
        </item>
        <item>
            <title>How to deploy your own ASP.NET application within the same site as Dynamics CRM 4.0</title>
            <link>http://geekswithblogs.net/WesWeeks/archive/2008/04/25/121652.aspx</link>
            <description>&lt;p&gt;&lt;font face="Arial"&gt;Working for a client on an upgrade for 3.0 to 4.0 with an application that was in place under the CRM IIS directory as a virtual directory.  Struggled trying to get this to work and respond as it did under 3.0.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Basically, the site would work if it was it's own web site, but not as a virtual directory.  To make matters worse, the only thing returned when you navigated to the site was a blank page.  None of my code was executing and I wasn't getting any type of error message.  Tried messing with every IIS 7.0 setting that seemed to make sense and even a few that didn't&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Didn't know what or who to blame.  CRM 4.0?  Windows Server 2008?  My brother-in-law? (because he owes me money and I blame him anyway)&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;The issue is that you cannot access to your custom application from IE because CRM 4.0 is running a .NET HttpModule and that .NET HttpModule is re-writing the URL depending of the organization (default organization normally.). This is a normal execution because of the multi-tenancy capability of CRM 4.0 and that is why you are not able to execute the ASP.NET pages from IE.  IE is not finding that changed URL. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;In fact, that HttpModule is declared within CRM web.config as the following: &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&amp;lt;httpModules&amp;gt; &lt;br /&gt;
&amp;lt;add name="MapOrg" type="Microsoft.Crm.MapOrgEngine, Microsoft.Crm, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /&amp;gt;&lt;br /&gt;
&amp;lt;/httpModules&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;So, if you want to deploy and run your custom ASP.NET application within the same IIS WebSite where CRM is running, what you gotta do is to specify within your custom app’s web.config that you want to get rid of that kind of filter (HttpModule). Please, note that I am talking about changing your own custom app's web.config. Do not touch CRM 4.0 Web.config, ok&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;So, if you go to your custom ASP.NET application folder and then you open your own Web.config, if you add the following directives, your clean that CRM filter, so you’ll be able to run your custom app from IE. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;This is what you have to add to your own web.con file: &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;&amp;lt;system.web&amp;gt; &lt;br /&gt;
&amp;lt;httpModules&amp;gt; &lt;br /&gt;
&amp;lt;clear/&amp;gt; &lt;br /&gt;
&amp;lt;/httpModules&amp;gt; &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Arial"&gt;Problem solved.  Still blaming the brother-in-law though.... &lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.pheedo.com/click.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=121652"&gt;&lt;img src="http://www.pheedo.com/img.phdo?x=6cda6ad746d942b9a1110d0715a4fa12&amp;u=121652" border="0"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;iframe src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;PageID=31016&amp;amp;SiteID=1" width=1 height=1 Marginwidth=0 Marginheight=0 Hspace=0 Vspace=0 Frameborder=0 Scrolling=No&gt;
&lt;script language='javascript1.1' src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Browser=NETSCAPE4&amp;amp;NoCache=True&amp;PageID=31016&amp;amp;SiteID=1"&gt;&lt;/script&gt;
&lt;noscript&gt;&lt;a href="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Click&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" target="_blank"&gt;
&lt;img src="http://ads.geekswithblogs.net/a.aspx?ZoneID=5&amp;amp;Task=Get&amp;amp;Mode=HTML&amp;amp;SiteID=1&amp;amp;PageID=31016" width="1" height="1" border="0"  alt=""&gt;&lt;/a&gt;
&lt;/noscript&gt;
&lt;/iframe&gt;
&lt;img src="http://geekswithblogs.net/WesWeeks/aggbug/121652.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>Wes Weeks</dc:creator>
            <guid>http://geekswithblogs.net/WesWeeks/archive/2008/04/25/121652.aspx</guid>
            <pubDate>Fri, 25 Apr 2008 22:06:54 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/WesWeeks/comments/121652.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/WesWeeks/archive/2008/04/25/121652.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/WesWeeks/comments/commentRss/121652.aspx</wfw:commentRss>
            <trackback:ping>http://geekswithblogs.net/WesWeeks/services/trackbacks/121652.aspx</trackback:ping>
        </item>
    </channel>
</rss>