<?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>.Sitecore</title>
	<atom:link href="http://sitecore.alexiasoft.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://sitecore.alexiasoft.nl</link>
	<description>All about the web, application &#38; software development, online marketing, Sitecore, .NET and tremendous ALM...</description>
	<lastBuildDate>Fri, 03 May 2013 10:08:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>A must read for everyone in the web industry&#8230;!</title>
		<link>http://sitecore.alexiasoft.nl/2013/05/03/a-must-read-for-everyone-in-the-web-industry/</link>
		<comments>http://sitecore.alexiasoft.nl/2013/05/03/a-must-read-for-everyone-in-the-web-industry/#comments</comments>
		<pubDate>Fri, 03 May 2013 10:07:38 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/?p=348</guid>
		<description><![CDATA[For all you, developers, techies, web analysts, designers, quality engineers and project managers in the internet industry. The following page is a real must read! As you can see on this picture, the marketing organizations are on loose ground. It’s time to help them, but before we can do that, we probably need to dive [...]]]></description>
				<content:encoded><![CDATA[<p><img style="float: right; display: inline" alt="Marketing Punctuated Equilibrium" align="right" src="http://cdn.chiefmartec.com/wp-content/uploads/2013/01/punctuated_equilibrium_600-300x253.jpg" width="300" height="253" /></p>
<p>For all you, developers, techies, web analysts, designers, quality engineers and project managers in the internet industry. The following page is a real must read! As you can see on this picture, the marketing organizations are on loose ground. It’s time to help them, but before we can do that, we probably need to dive a bit into their world…</p>
<p><a title="http://chiefmartec.com/2013/03/agile-marketing-for-a-world-of-constant-change/" href="http://chiefmartec.com/2013/03/agile-marketing-for-a-world-of-constant-change/" target="_blank">http://chiefmartec.com/2013/03/agile-marketing-for-a-world-of-constant-change/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2013/05/03/a-must-read-for-everyone-in-the-web-industry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly rebuilding the indexes of your DMS database</title>
		<link>http://sitecore.alexiasoft.nl/2013/04/02/quickly-rebuilding-the-indexes-of-your-dms-database/</link>
		<comments>http://sitecore.alexiasoft.nl/2013/04/02/quickly-rebuilding-the-indexes-of-your-dms-database/#comments</comments>
		<pubDate>Tue, 02 Apr 2013 16:37:28 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/?p=345</guid>
		<description><![CDATA[The easiest way to rebuild the indexes of your DMS database is done in the following way: SQL Script SET NOCOUNT ON GO &#8211;Set the fillfactor DECLARE @FillFactor TINYINT SELECT @FillFactor=80 DECLARE @StartTime DATETIME SELECT @StartTime=GETDATE() if object_id(&#39;tempdb..#TablesToRebuildIndex&#39;) is not null begin drop table #TablesToRebuildIndex end DECLARE @NumTables VARCHAR(20) SELECT s.[Name] AS SchemaName, t.[name] AS [...]]]></description>
				<content:encoded><![CDATA[<p>The easiest way to rebuild the indexes of your DMS database is done in the following way:</p>
<p>
<div id="scid:9ce6104f-a9aa-4a17-a79f-3a39532ebf7c:305ac7c9-12a7-4fff-b1fa-b5b8a7e1be37" class="wlWriterEditableSmartContent" style="float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px">
<div style="border: #000080 1px solid; color: #000; font-family: 'Courier New', Courier, Monospace; font-size: 10pt">
<div style="background: #000080; color: #fff; font-family: Verdana, Tahoma, Arial, sans-serif; font-weight: bold; padding: 2px 5px">SQL Script</div>
<div style="background: #fff; max-height: 500px; overflow: auto">
<ol style="background: #ffffff; margin: 0; padding: 0 0 0 5px;">
<li><span style="color:#0000ff">SET</span> <span style="color:#0000ff">NOCOUNT</span> <span style="color:#0000ff">ON</span></li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">GO</span></li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#008000">&#8211;Set the fillfactor</span></li>
<li> <span style="color:#0000ff">DECLARE</span> @FillFactor <span style="color:#0000ff">TINYINT</span></li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">SELECT</span> @FillFactor<span style="color:#808080">=</span>80</li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">DECLARE</span> @StartTime <span style="color:#0000ff">DATETIME</span></li>
<li> <span style="color:#0000ff">SELECT</span> @StartTime<span style="color:#808080">=</span><span style="color:#ff00ff">GETDATE</span><span style="color:#808080">()</span></li>
<li style="background: #f3f3f3"> </li>
<li><span style="color:#0000ff">if</span> <span style="color:#ff00ff">object_id</span><span style="color:#808080">(</span><span style="color:#ff0000">&#39;tempdb..#TablesToRebuildIndex&#39;</span><span style="color:#808080">)</span> <span style="color:#808080">is</span> <span style="color:#808080">not</span> <span style="color:#808080">null</span></li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">begin</span></li>
<li> <span style="color:#0000ff">drop</span> <span style="color:#0000ff">table</span> #TablesToRebuildIndex</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">end</span></li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">DECLARE</span> @NumTables <span style="color:#0000ff">VARCHAR</span><span style="color:#808080">(</span>20<span style="color:#808080">)</span></li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">SELECT</span></li>
<li> s<span style="color:#808080">.</span>[Name] <span style="color:#0000ff">AS</span> SchemaName<span style="color:#808080">,</span></li>
<li style="background: #f3f3f3"> t<span style="color:#808080">.</span>[name] <span style="color:#0000ff">AS</span> TableName<span style="color:#808080">,</span></li>
<li> <span style="color:#ff00ff">SUM</span><span style="color:#808080">(</span>p<span style="color:#808080">.</span><span style="color:#0000ff">rows</span><span style="color:#808080">)</span> <span style="color:#0000ff">AS</span> RowsInTable</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">INTO</span> #TablesToRebuildIndex</li>
<li> <span style="color:#0000ff">FROM</span></li>
<li style="background: #f3f3f3"> <span style="color:#008000">sys</span><span style="color:#808080">.</span><span style="color:#008000">schemas</span> s</li>
<li> <span style="color:#808080">LEFT</span> <span style="color:#808080">JOIN</span> <span style="color:#008000">sys</span><span style="color:#808080">.</span><span style="color:#008000">tables</span> t</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">ON</span>  s<span style="color:#808080">.</span><span style="color:#ff00ff">schema_id</span> <span style="color:#808080">=</span> t<span style="color:#808080">.</span><span style="color:#ff00ff">schema_id</span></li>
<li> <span style="color:#808080">LEFT</span> <span style="color:#808080">JOIN</span> <span style="color:#008000">sys</span><span style="color:#808080">.</span><span style="color:#008000">partitions</span> p</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">ON</span>  t<span style="color:#808080">.</span><span style="color:#ff00ff">object_id</span> <span style="color:#808080">=</span> p<span style="color:#808080">.</span><span style="color:#ff00ff">object_id</span></li>
<li> <span style="color:#808080">LEFT</span> <span style="color:#808080">JOIN</span> <span style="color:#008000">sys</span><span style="color:#808080">.</span><span style="color:#008000">allocation_units</span> a</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">ON</span>  p<span style="color:#808080">.</span>partition_id <span style="color:#808080">=</span> a<span style="color:#808080">.</span>container_id</li>
<li> <span style="color:#0000ff">WHERE</span></li>
<li style="background: #f3f3f3"> p<span style="color:#808080">.</span>index_id <span style="color:#808080">IN</span><span style="color:#0000ff"> </span><span style="color:#808080">(</span> 0<span style="color:#808080">,</span> 1 <span style="color:#808080">)</span> <span style="color:#008000">&#8211; 0 heap table , 1 table with clustered index</span></li>
<li> <span style="color:#808080">AND</span> p<span style="color:#808080">.</span><span style="color:#0000ff">rows</span> <span style="color:#808080">IS</span> <span style="color:#808080">NOT</span> <span style="color:#808080">NULL</span></li>
<li style="background: #f3f3f3"> <span style="color:#808080">AND</span> a<span style="color:#808080">.</span><span style="color:#0000ff">type</span> <span style="color:#808080">=</span> 1  <span style="color:#008000">&#8211; row-data only , not LOB</span></li>
<li> <span style="color:#0000ff">GROUP</span> <span style="color:#0000ff">BY</span></li>
<li style="background: #f3f3f3"> s<span style="color:#808080">.</span>[Name]<span style="color:#808080">,</span></li>
<li> t<span style="color:#808080">.</span>[name]</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">SELECT</span> @NumTables<span style="color:#808080">=</span><span style="color:#ff00ff">@@ROWCOUNT</span></li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">DECLARE</span> RebuildIndex <span style="color:#0000ff">CURSOR</span> <span style="color:#0000ff">FOR</span></li>
<li> <span style="color:#0000ff">SELECT</span></li>
<li style="background: #f3f3f3"> <span style="color:#ff00ff">ROW_NUMBER</span><span style="color:#808080">()</span> <span style="color:#0000ff">OVER </span><span style="color:#808080">(</span><span style="color:#0000ff">ORDER</span> <span style="color:#0000ff">BY</span> ttus<span style="color:#808080">.</span>RowsInTable<span style="color:#808080">),</span></li>
<li> ttus<span style="color:#808080">.</span>SchemaName<span style="color:#808080">,</span></li>
<li style="background: #f3f3f3"> ttus<span style="color:#808080">.</span>TableName<span style="color:#808080">,</span></li>
<li> ttus<span style="color:#808080">.</span>RowsInTable</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">FROM</span></li>
<li> #TablesToRebuildIndex <span style="color:#0000ff">AS</span> ttus</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">ORDER</span> <span style="color:#0000ff">BY</span></li>
<li> ttus<span style="color:#808080">.</span>RowsInTable</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">OPEN</span> RebuildIndex</li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">DECLARE</span> @TableNumber <span style="color:#0000ff">VARCHAR</span><span style="color:#808080">(</span>20<span style="color:#808080">)</span></li>
<li> <span style="color:#0000ff">DECLARE</span> @SchemaName <span style="color:#0000ff">NVARCHAR</span><span style="color:#808080">(</span>128<span style="color:#808080">)</span></li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">DECLARE</span> @tableName <span style="color:#0000ff">NVARCHAR</span><span style="color:#808080">(</span>128<span style="color:#808080">)</span></li>
<li> <span style="color:#0000ff">DECLARE</span> @RowsInTable <span style="color:#0000ff">VARCHAR</span><span style="color:#808080">(</span>20<span style="color:#808080">)</span></li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">DECLARE</span> @Statement <span style="color:#0000ff">NVARCHAR</span><span style="color:#808080">(</span>300<span style="color:#808080">)</span></li>
<li> <span style="color:#0000ff">DECLARE</span> @Status <span style="color:#0000ff">NVARCHAR</span><span style="color:#808080">(</span>300<span style="color:#808080">)</span></li>
<li style="background: #f3f3f3"> </li>
<li><span style="color:#0000ff">FETCH</span> <span style="color:#0000ff">NEXT</span> <span style="color:#0000ff">FROM</span> RebuildIndex <span style="color:#0000ff">INTO</span> @TableNumber<span style="color:#808080">,</span> @SchemaName<span style="color:#808080">,</span> @tablename<span style="color:#808080">,</span> @RowsInTable</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">WHILE </span><span style="color:#808080">(</span> <span style="color:#ff00ff">@@FETCH_STATUS</span> <span style="color:#808080">=</span> 0 <span style="color:#808080">)</span></li>
<li> <span style="color:#0000ff">BEGIN</span></li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">SET</span> @Status<span style="color:#808080">=</span><span style="color:#ff0000">&#39;Table &#39;</span><span style="color:#808080">+</span>@TableNumber<span style="color:#808080">+</span><span style="color:#ff0000">&#39; of &#39;</span><span style="color:#808080">+</span>@NumTables<span style="color:#808080">+</span><span style="color:#ff0000">&#39;: Rebuilding indexes on &#39;</span><span style="color:#808080">+</span>@SchemaName<span style="color:#808080">+</span><span style="color:#ff0000">&#39;.&#39;</span><span style="color:#808080">+</span>@tablename <span style="color:#808080">+</span> <span style="color:#ff0000">&#39; (&#39;</span><span style="color:#808080">+</span>@RowsInTable<span style="color:#808080">+</span><span style="color:#ff0000">&#39; rows)&#39;</span></li>
<li> <span style="color:#0000ff">RAISERROR </span><span style="color:#808080">(</span>@Status<span style="color:#808080">,</span> 0<span style="color:#808080">,</span> 1<span style="color:#808080">)</span> <span style="color:#0000ff">WITH</span> <span style="color:#0000ff">NOWAIT</span>  <span style="color:#008000">&#8211;RAISERROR used to immediately output status</span></li>
<li style="background: #f3f3f3"> </li>
<li><span style="color:#0000ff">SET</span> @Statement <span style="color:#808080">=</span> <span style="color:#ff0000">&#39;ALTER INDEX ALL ON [&#39;</span><span style="color:#808080">+</span>@SchemaName<span style="color:#808080">+</span><span style="color:#ff0000">&#39;].[&#39;</span><span style="color:#808080">+</span>@tablename <span style="color:#808080">+</span><span style="color:#ff0000">&#39;] REBUILD WITH (FILLFACTOR = &#39;</span><span style="color:#808080">+</span><span style="color:#ff00ff">CONVERT</span><span style="color:#808080">(</span><span style="color:#0000ff">VARCHAR</span><span style="color:#808080">(</span>3<span style="color:#808080">),</span> @FillFactor<span style="color:#808080">)+</span><span style="color:#ff0000">&#39; )&#39;</span></li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">EXEC</span> <span style="color:#800000">sp_executesql</span><span style="color:#0000ff"> </span>@Statement</li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">FETCH</span> <span style="color:#0000ff">NEXT</span> <span style="color:#0000ff">FROM</span> RebuildIndex <span style="color:#0000ff">INTO</span> @TableNumber<span style="color:#808080">,</span> @SchemaName<span style="color:#808080">,</span> @tablename<span style="color:#808080">,</span> @RowsInTable</li>
<li> <span style="color:#0000ff">END</span></li>
<li style="background: #f3f3f3"> </li>
<li><span style="color:#0000ff">CLOSE</span> RebuildIndex</li>
<li style="background: #f3f3f3"> <span style="color:#0000ff">DEALLOCATE</span> RebuildIndex</li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">drop</span> <span style="color:#0000ff">table</span> #TablesToRebuildIndex</li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">Print</span> <span style="color:#ff0000">&#39;Total Elapsed Time: &#39;</span><span style="color:#808080">+</span><span style="color:#ff00ff">CONVERT</span><span style="color:#808080">(</span><span style="color:#0000ff">VARCHAR</span><span style="color:#808080">(</span>100<span style="color:#808080">),</span> <span style="color:#ff00ff">DATEDIFF</span><span style="color:#808080">(</span><span style="color:#0000ff">minute</span><span style="color:#808080">,</span> @StartTime<span style="color:#808080">,</span> <span style="color:#ff00ff">GETDATE</span><span style="color:#808080">()))+</span><span style="color:#ff0000">&#39; minutes&#39;</span></li>
<li> </li>
<li style="background: #f3f3f3"><span style="color:#0000ff">GO</span></li>
</ol></div>
</p></div>
</p></div>
</p>
<p>This script is particular usable if you have a huge database since it optimizes the small ones first.</p>
<p>Example output:</p>
<div id="scid:9ce6104f-a9aa-4a17-a79f-3a39532ebf7c:a9cd0b24-b8d9-4916-afa7-69ed5d5c8333" class="wlWriterEditableSmartContent" style="float: none; padding-bottom: 0px; padding-top: 0px; padding-left: 0px; margin: 0px; display: inline; padding-right: 0px">
<div style="border: #000080 1px solid; color: #000; font-family: 'Courier New', Courier, Monospace; font-size: 10pt">
<div style="background: #000080; color: #fff; font-family: Verdana, Tahoma, Arial, sans-serif; font-weight: bold; padding: 2px 5px">Code Snippet</div>
<div style="background: #ddd; max-height: 500px; overflow: auto">
<ol start="1" style="background: #ffffff; margin: 0 0 0 2.5em; padding: 0 0 0 5px;">
<li>Table 22 of 37: Rebuilding indexes on dbo.ReferringSites (40474 rows)</li>
<li style="background: #f3f3f3">Table 23 of 37: Rebuilding indexes on dbo.Locations (131276 rows)</li>
<li>Table 24 of 37: Rebuilding indexes on dbo.Keywords (267301 rows)</li>
<li style="background: #f3f3f3">Table 25 of 37: Rebuilding indexes on dbo.UserAgents (337697 rows)</li>
<li>Table 26 of 37: Rebuilding indexes on dbo.GeoIps (1573434 rows)</li>
<li style="background: #f3f3f3">Table 27 of 37: Rebuilding indexes on dbo.Cache_TrafficByDay (1755931 rows)</li>
<li>Table 28 of 37: Rebuilding indexes on dbo.VisitorTags (1985036 rows)</li>
<li style="background: #f3f3f3">Table 29 of 37: Rebuilding indexes on dbo.AutomationStates (1987782 rows)</li>
<li>Table 30 of 37: Rebuilding indexes on dbo.Profiles (3315763 rows)</li>
</ol></div>
</p></div>
</p></div>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2013/04/02/quickly-rebuilding-the-indexes-of-your-dms-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Technical Stuff in your backlog matters</title>
		<link>http://sitecore.alexiasoft.nl/2013/03/27/why-technical-stuff-in-your-backlog-matters/</link>
		<comments>http://sitecore.alexiasoft.nl/2013/03/27/why-technical-stuff-in-your-backlog-matters/#comments</comments>
		<pubDate>Wed, 27 Mar 2013 09:28:47 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/?p=343</guid>
		<description><![CDATA[Inside Sitecore we work with Scrum. This simply means that we have the business prioritize business cases and technical teams try to implement them as good as possible. Over the years we’ve learned a lot about application development and one of those things was that we’ve to prioritize technical tasks in a similar fashion as [...]]]></description>
				<content:encoded><![CDATA[<p>Inside Sitecore we work with Scrum. This simply means that we have the business prioritize business cases and technical teams try to implement them as good as possible. Over the years we’ve learned a lot about application development and one of those things was that we’ve to prioritize technical tasks in a similar fashion as business cases. Obviously these don’t go always hand in hand. A simple update of the Sitecore platform(for example Update-1 to Update-3) isn’t an obvious task for the business. In this particular case, there were only two new features in the platform:</p>
<ul>
<li>New Channel Performance report inside the Insight Dashboards which shows which channels drive most value.</li>
<li>The Content Editor allows you now to display [shared] and [unversioned] to end users, to simplify translation projects</li>
</ul>
<p>When we did the upgrade, we saw a decrease of performance on our production environment. I’ve heard from many sides internally the unfunded conclusion that ‘6.6 Update-3’ is a bad and slow release. Interesting thought… But reality was different. Last Monday we released another version of the website, but with the same version: 6.6 Update-3. In the end of the story, if you give people new features, you can never roll back.</p>
<p>The cause seemed to be in the combination of some new relative slow features, infrastructural problems and deprioritized technical tasks. Let’s focus on the last ones. Let’s assume that the Technical Task was something along the lines ‘optimize the custom item manager’. As a business user it’s quite hard to judge whether this adds value. A developer never tells you that it’s causing a 25% decrease of your website.</p>
<p>So what can you do to solve this challenge? I guess we all do know that we can do performance testing. But that in itself doesn’t change the mind of the business owner, who wants to have a quick time-to-market. The solution for that is to agree on the experience. A simple way is to decide together with your business owner what is allowed. For example: every server page needs to be generated and transferred in less than 500ms. This allows a browser load of less than 3 seconds.</p>
<p>Out of the sudden, this small technical task makes sense for the business user, because a developer talks his language. It’s a no-brainer but it happens a lot. It’s not related to the project process you’re using. Scrum has a Definition of Done while using Prince II, you’ll talk about deliverables.</p>
<p>Still it doesn’t justify refactoring of your code. It’s obvious that a business owner doesn’t see the value in that. It can even slow you down a lot! There are easy ways to show technical debt like this in relation to team performance, but you need to have a lot of tooling before you can make this visible. Most of the time you don’t have those, so let’s make it more concrete.</p>
<p>Refactoring is all based on making the same thing do the same job, but in a more maintainable way. If you’re doing code and performance optimizations at the same time, you’ll end up in the situation where the system performs well, but you’ve broken all functionality. So split it. Refactoring shouldn’t optimize stuff, but is polishing for you and your team mates.</p>
<p>Still it doesn’t justify why you’re doing it. But it makes it easier to explain to your boss or business owner: <em>I made it maintainable.     <br /></em>Interestingly enough, that’s enough explanation for your boss or business owner. As part of your work, you’ve introduced 3 things:</p>
<ul>
<li>Meeting the desired functionality (the feature works)</li>
<li>Meeting the desired quality standards (it performs well, it looks good, it validates, etc)</li>
<li>It’s ready to enhance further (because it’s maintainable)</li>
</ul>
<p>So let’s assume they still don’t take it. Then make a list of the crappy stuff and explain in this list why you didn’t do it. Every time in the near future when you’ve to touch an area which is already build, show this list and show what you need to do to start working on it. In the end of the story it’s crappy code you’ve to work with.</p>
<p>Estimations will increase when you touch it again. The shock effect when you explain this is big. You can see it in the eyes of anyone who owns the budget where you are working with. You can go in the ‘told you so mode’. You’re allowed to do this once. Next time, propose to do it straight away, but as part as a simple flow when creating a new feature:</p>
<ol>
<li>First: Meet desired functionality</li>
<li>Meet desired quality</li>
<li>Meet desired code quality</li>
<li>Do the check-in</li>
</ol>
<p>Note: I make some shortcuts here. I do ignore all stuff like Test Driven Development, BDD, Pair Programming, etc. Why? Because they don’t add value to your business. Tests are cool for you. Because you like Green Checkboxes. The Business likes money. So what? Meet each other in the middle. Explain to them in a simplified way why you do stuff. Why Technical Debt matter. Why performance agreements matter. Make it visible. Fail on purpose. Learning is done by failing, not by showing I did according to the book. It’s sad but it’s damn true. But please, try to fail before you go to production <img class="wlEmoticon wlEmoticon-winkingsmile" style="border-top-style: none; border-left-style: none; border-bottom-style: none; border-right-style: none" alt="Winking smile" src="http://sitecore.alexiasoft.nl/wp-content/2013/03/wlEmoticon-winkingsmile.png" />…</p>
<p>&#160;</p>
<p>Thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2013/03/27/why-technical-stuff-in-your-backlog-matters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>From ECM-link to the right Email Campaign</title>
		<link>http://sitecore.alexiasoft.nl/2013/03/26/from-ecm-link-to-the-right-email-campaign/</link>
		<comments>http://sitecore.alexiasoft.nl/2013/03/26/from-ecm-link-to-the-right-email-campaign/#comments</comments>
		<pubDate>Tue, 26 Mar 2013 11:45:58 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/?p=341</guid>
		<description><![CDATA[In the operations around Sitecore.net we often get contacted by someone who has a problem with a link. Recent example of that is when we started to enable the CSRF-extensions for Sitecore 6.6(Update-3). All kinds of redirect problems were caught, but how to figure out to which exact mailing they are related? Don’t worry, that’s [...]]]></description>
				<content:encoded><![CDATA[<p>In the operations around Sitecore.net we often get contacted by someone who has a problem with a link. Recent example of that is when we started to enable the CSRF-extensions for Sitecore 6.6(Update-3). All kinds of redirect problems were caught, but how to figure out to which exact mailing they are related?</p>
<p>Don’t worry, that’s easy… As long as you have database access… <img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-left-style: none; border-bottom-style: none; border-right-style: none" alt="Smile" src="http://sitecore.alexiasoft.nl/wp-content/2013/03/wlEmoticon-smile.png" /></p>
<p>So let’s assume we have the following link:</p>
<p><a title="http://www.yoursite.net/sitecore/RedirectUrlPage.aspx?ec_url=http://www.sitecore.net&amp;ec_camp=15A4275B9C284B62BC8379D4691A5D64&amp;ec_as=00000000000000000000000000000000" href="http://www.yoursite.net/sitecore/RedirectUrlPage.aspx?ec_url=http://www.sitecore.net&amp;ec_camp=15A4275B9C284B62BC8379D4691A5D64&amp;ec_as=00000000000000000000000000000000">http://www.yoursite.net/sitecore/RedirectUrlPage.aspx?ec_url=http://www.sitecore.net&amp;ec_camp=15A4275B9C284B62BC8379D4691A5D64&amp;ec_as=00000000000000000000000000000000</a></p>
<p>The steps to get to the Campaign:</p>
<ol>
<li>Take the ec_as-query string parameter</li>
<li>Execute the following script to the database. Where @guid is your ec_as-parameter<br />
<blockquote>
<p>DECLARE @guid VARCHAR(50)          <br />SET @guid = &#8217;00000000000000000000000000000000&#8242;</p>
<p>SELECT [AutomationId]          <br />&#160; FROM [Sitecore_DMS].[dbo].[AutomationStates]           <br />&#160; WHERE [AutomationStateId] = CAST(           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; SUBSTRING(@guid, 1, 8) + &#8216;-&#8217; + SUBSTRING(@guid, 9, 4) + &#8216;-&#8217; + SUBSTRING(@guid, 13, 4) + &#8216;-&#8217; +           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; SUBSTRING(@guid, 17, 4) + &#8216;-&#8217; + SUBSTRING(@guid, 21, 12)           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; AS UNIQUEIDENTIFIER)</p>
</blockquote>
</li>
<li>Now you have the AutomationId which is the same as your Automation Plan in the back-end. You can simply search for the Item in the Content Editor.</li>
<li>Once you’ve found this item, you can got to the Navigate Tab –&gt; Links –&gt; Referrers –&gt; All campaigns that use this automation</li>
</ol>
<p>So basically what have we done? We used the Automation State to get back to the original Campaign. Sounds easy doesn’t it <img class="wlEmoticon wlEmoticon-smile" style="border-top-style: none; border-left-style: none; border-bottom-style: none; border-right-style: none" alt="Smile" src="http://sitecore.alexiasoft.nl/wp-content/2013/03/wlEmoticon-smile.png" />?</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2013/03/26/from-ecm-link-to-the-right-email-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Update for ASP.NET Vulnerability 2416728: Sitecore implications *Update*</title>
		<link>http://sitecore.alexiasoft.nl/2010/10/01/windows-update-for-asp-net-vulnerability-2416728-sitecore-implications/</link>
		<comments>http://sitecore.alexiasoft.nl/2010/10/01/windows-update-for-asp-net-vulnerability-2416728-sitecore-implications/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 13:10:45 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[2416728]]></category>
		<category><![CDATA[sitecore]]></category>
		<category><![CDATA[Vulnerability]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2010/10/01/windows-update-for-asp-net-vulnerability-2416728-sitecore-implications/</guid>
		<description><![CDATA[As you could have been reading in my previous post, Sitecore’s major product Sitecore .NET Web Content Management System is affected by the ASP.NET Vulnerability 2416728. Today, Microsoft has released an update to all the Windows Update Services(WSUS and WU). You can find all the details in Scott Guthrie’s post. What could potentially happen to [...]]]></description>
				<content:encoded><![CDATA[<p>As you could have been reading in <a href="http://sitecore.alexiasoft.nl/2010/09/24/asp-net-vulnerability-2416728-and-sitecore/">my previous post</a>, Sitecore’s major product <a href="http://www.sitecore.net/Products/Sitecore-CMS/Architecture.aspx">Sitecore .NET Web Content Management System</a> is affected by the <a href="http://www.microsoft.com/technet/security/advisory/2416728.mspx">ASP.NET Vulnerability 2416728</a>. Today, Microsoft has released an update to all the Windows Update Services(WSUS and WU). You can find <a href="http://weblogs.asp.net/scottgu/archive/2010/09/30/asp-net-security-fix-now-on-windows-update.aspx">all the details in Scott Guthrie’s post</a>.</p>
<p>What could potentially happen to your Sitecore installation when applying this patch?</p>
<ol>
<li>A couple of users get logged out. That’s only really notable for the user who use the check box ‘Remember me’. Just login again. That’s the deal. According to my checks on 6.2, this does not happen.</li>
<li>Potentially you could get an exception for people who have a open session while updating Sitecore. According to my checks, this doesn’t happen.</li>
</ol>
<p>So it seems that you can install this patch without any unexpected side effect. I’ve checked it on my machines and tested it there(so this is an unofficial Sitecore&#160; statement). If we come across issue, we will let you know. If you come across issues, please let our <a href="http://support.sitecore.net">support team</a> know.</p>
<p><strong>Update</strong>: Sometimes an ‘HttpException: Unable to validate data’ happens when people are already authenticated. I couldn’t reproduce this. But it seems to be there. In that case, please review <a href="http://sdn.sitecore.net/Products/Sitecore%20V5/Sitecore%20CMS%206/ReleaseNotes/KnownIssues%20Recommended/Unhandled%20exception%20after%20applying%20security%20update%20KB2416473.aspx">this solution on SDN</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2010/10/01/windows-update-for-asp-net-vulnerability-2416728-sitecore-implications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Vulnerability 2416728 and Sitecore</title>
		<link>http://sitecore.alexiasoft.nl/2010/09/24/asp-net-vulnerability-2416728-and-sitecore/</link>
		<comments>http://sitecore.alexiasoft.nl/2010/09/24/asp-net-vulnerability-2416728-and-sitecore/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 13:54:39 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[2416728]]></category>
		<category><![CDATA[sitecore]]></category>
		<category><![CDATA[Vulnerability]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2010/09/24/asp-net-vulnerability-2416728-and-sitecore/</guid>
		<description><![CDATA[Sitecore’s major product Sitecore ASP.NET Web CMS is affected by the ASP.NET Vulnerability 2416728. Scott Guthrie describes all the nifty details about this threat in this post. Our Support-team has been working intensively with our Product team to get a well tested solution out. It’s available now.&#160; For more information, please review this article on [...]]]></description>
				<content:encoded><![CDATA[<p>Sitecore’s major product <a href="http://www.sitecore.net/Products/Sitecore-CMS/Architecture.aspx">Sitecore ASP.NET Web CMS</a> is affected by the <a href="http://www.microsoft.com/technet/security/advisory/2416728.mspx">ASP.NET Vulnerability 2416728</a>. Scott Guthrie describes all the nifty details about this threat in <a href="http://weblogs.asp.net/scottgu/archive/2010/09/20/frequently-asked-questions-about-the-asp-net-security-vulnerability.aspx">this post</a>. Our Support-team has been working intensively with our Product team to get a well tested solution out. It’s <a href="http://sdn.sitecore.net/articles/security/asp,-d-,net%20vulnerability%202416728.aspx">available</a> now.&#160; </p>
<p>For more information, please review <a href="http://sdn.sitecore.net/articles/security/asp,-d-,net%20vulnerability%202416728.aspx">this article</a> on <a href="http://sdn.sitecore.net/">SDN</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2010/09/24/asp-net-vulnerability-2416728-and-sitecore/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sitecore, Webforms for Marketers, OMS and Dynamics CRM Campaign integration</title>
		<link>http://sitecore.alexiasoft.nl/2010/08/24/sitecore-webforms-for-marketers-oms-and-dynamics-crm-campaign-integration/</link>
		<comments>http://sitecore.alexiasoft.nl/2010/08/24/sitecore-webforms-for-marketers-oms-and-dynamics-crm-campaign-integration/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 11:40:20 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[online marketing suite]]></category>
		<category><![CDATA[sitecore]]></category>
		<category><![CDATA[webforms for marketers]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2010/08/24/sitecore-webforms-for-marketers-oms-and-dynamics-crm-campaign-integration/</guid>
		<description><![CDATA[Sitecore is moving a lot these days and releasing almost on a monthly base new and cool functionalities. Not everybody has the ability to work with Sitecore on a daily base an keep up with this new exciting functionality. So time for me to step in and guide you back to the highway by creating [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.sitecore.net">Sitecore</a> is moving a lot these days and releasing almost on a monthly base new and cool functionalities. Not everybody has the ability to work with Sitecore on a daily base an keep up with this new exciting functionality. So time for me to step in and guide you back to the highway by creating small and very focused blog posts. This is the first one about Webforms for Marketers and the <a href="http://www.sitecore.net/Products/Sitecore-CMS/Integration-Abilities.aspx">Dynamics CRM Campaign Integration</a>.</p>
<p>The following diagram shows how the CMS, OMS, Webforms for Marketers and Dynamics CRM Campaign Integration glue together: <img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="CRM Integratie" border="0" alt="CRM Integratie" src="http://sitecore.alexiasoft.nl/wp-content/2010/08/CRMIntegratie_thumb.jpg" width="495" height="411" /></p>
<p>On top of the Sitecore <a href="http://www.sitecore.net/Products/Sitecore-CMS.aspx">Web CMS</a> you can find the Sitecore Online Marketing Suite(OMS) which is used for gaining more details out of the visitor experience.</p>
<p>The Webforms for Marketers module is added on top of the OMS. It relies heavily on the OMS, so I’ve decided to add it there.   <br />Eventually you can run this module without the OMS, but you’ll definitely not gain all the potential out of it.</p>
<p>For integration with MS Dynamics CRM, we have our new Dynamics CRM Campaign Integration module. This module consists of 2 parts:</p>
<ol>
<li>Save Actions: An extension to the Webforms for Marketers module. It allows any business user to import data into any CRM entity. All WYSIWYG. So no coding required. </li>
<li>Security Provider: Share Contacts in Dynamics CRM as Users in Sitecore. This means that a contact in CRM can login into your Sitecore website for extranet purposes. </li>
</ol>
<p>Let’s assume you want to start developing on a similar solution. Then it’s highly advisable for you to setup a sandbox environment. You need the following components:</p>
<ul>
<li>Windows Server 2003/2008 Web with IIS installed (you can virtualize this) </li>
<li>SQL Server 2008 (2005 is possible but 2008 is a speedy animal) </li>
<li>Microsoft Dynamics CRM 4.0 Installer (on your MSDN subscription) or CRM online </li>
<li><a href="http://sdn.sitecore.net/Resources/Sitecore%206/Sitecore%206,-d-,3.aspx">Sitecore 6.3</a> </li>
<li><a href="http://sdn.sitecore.net/Resources/Sitecore%206/OMS.aspx">Sitecore OMS 1.1.1</a> </li>
<li><a href="http://sdn.sitecore.net/Resources/Sitecore%206/Web%20Forms%20for%20Marketers%20Module/Web%20Forms%20for%20Marketers%202,-d-,1.aspx">Webforms for Marketers 2.1</a> </li>
<li><a href="http://sdn.sitecore.net/Resources/Sitecore%206/Dynamics%20CRM%20Campaign%20Integration.aspx">Dynamics CRM Save Actions &amp; Dynamics CRM Security Provider</a> </li>
</ul>
<p>Then you’re ready to rock!</p>
<p>So far so good for today. We’ve got plenty more to talk about. But that can wait for later.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2010/08/24/sitecore-webforms-for-marketers-oms-and-dynamics-crm-campaign-integration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Insert Options &#8211; Individual Items, Standard Values or Rules</title>
		<link>http://sitecore.alexiasoft.nl/2010/02/01/insert-options-individual-items-standard-values-or-rules/</link>
		<comments>http://sitecore.alexiasoft.nl/2010/02/01/insert-options-individual-items-standard-values-or-rules/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:38:06 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/2010/02/01/insert-options-individual-items-standard-values-or-rules/</guid>
		<description><![CDATA[A very common question I receive is that people don’t know anymore where to setup Insert Options. Especially with the new possibilities of the Sitecore 6.1 content management system. Here’s my view on this: Individual item Rarely, you want to setup Insert Options on individual items. Something when you have a specific folder or section in [...]]]></description>
				<content:encoded><![CDATA[<p>A very common question I receive is that people don’t know anymore where to setup Insert Options. Especially with the new possibilities of <a href="http://www.sitecore.net/en/Products/Sitecore-CMS.aspx">the Sitecore 6.1 content management system</a>.</p>
<p>Here’s my view on this:</p>
<ol>
<li><strong>Individual item</strong><br />
Rarely, you want to setup Insert Options on individual items. Something when you have a specific folder or section in your website, you might chose for this option. Keep in mind that this you always should have a valid reason.<br />
For example: For all my meta data I use the /Common/Folder template to store my item underneath. As these folders have only 1 specific setting(Insert Options), I’ve decided not to Subtemplate(create a new template and inherit from the Folder-template) the Folder-template, because of maintainability. Consider in that case Insert Option Rules.</li>
<li><strong>Branch Templates<br />
</strong>It’s a bad practice to set <span style="text-decoration: underline;">any Insert Options</span> on Branch templates.</li>
<li><strong>Standard Values<br />
</strong>95% of the cases setup your Insert Options on Standard Values as it’s applied everywhere when you use the specific template.</li>
<li><strong>Insert Options Rules</strong><br />
When you need to setup global conditions, like ‘All the items based on the Folder template containing the word ‘Blog’ should add the Blog Entry template as Insert Option’.<br />
We use it ourselves in the Marketing Center. We allow everybody to create folders, but we want them to create specific items underneath.<br />
Before setting up a rule, figure out if you can’t do it with Standard Values.</li>
</ol>
<p>Trimming the list afterwards can always be done by settings up Insert Rules.<br />
For an advanced Reference regarding these Content Infrastructure topics, please refer to <a href="http://sdn.sitecore.net/Reference/Sitecore%206/Data%20Definition%20Reference.aspx" target="_blank">Data Definition Reference</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2010/02/01/insert-options-individual-items-standard-values-or-rules/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PDC09 &#8211; What I&#8217;ll watch &#8211; Day 1</title>
		<link>http://sitecore.alexiasoft.nl/2009/11/19/pdc09-day/</link>
		<comments>http://sitecore.alexiasoft.nl/2009/11/19/pdc09-day/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 13:12:48 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
		
		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/?p=312</guid>
		<description><![CDATA[PDC09  has started. Unfortunatelly I&#8217;m not there. But no worries! Everythings get recorded by the Channel 9 chaps. I thought: let&#8217;s share my recommended movies / the movies I&#8217;ll watch :). So here we go: Data Programming and Modeling for the Microsoft .NET Developer Don Box! The main guy behind Oslo, someone you should always watch! Microsoft [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://microsoftpdc.com" target="_blank">PDC09</a>  has started. Unfortunatelly I&#8217;m not there. But no worries! Everythings get recorded by the <a href="http://channel9.msdn.com" target="_blank">Channel 9</a> chaps.<br />
I thought: let&#8217;s share my recommended movies / the movies I&#8217;ll watch :).</p>
<p>So here we go:</p>
<ol>
<li><a href="http://microsoftpdc.com/Sessions/P09-04" target="_blank">Data Programming and Modeling for the Microsoft .NET Developer</a><br />
<a href="http://en.wikipedia.org/wiki/Don_Box">Don Box</a>! The main guy behind Oslo, someone you should always watch!</li>
<li><a href="http://microsoftpdc.com/Sessions/FT57" target="_blank">Microsoft ASP.NET 4 Core Runtime for Web Developers</a><br />
That&#8217;s my job isn&#8217;t it? ASP.NET 4 is upcoming, .NET 4 is upcoming, so we as Sitecore should remain running!</li>
<li><a href="http://microsoftpdc.com/Sessions/FT08" target="_blank">Code Visualization, UML, and DSLs</a><br />
Very interesting way of looking at code is to Visualize it and make it more human.<br />
Definitelly one to watch.</li>
<li><a href="http://microsoftpdc.com/Sessions/P09-09" target="_blank">Manycore and the Microsoft .NET Framework 4: A Match Made in Microsoft Visual Studio 2010</a><br />
Many core is the main issue these days. This video brings a lot of the great work done by MSFT together.</li>
</ol>
<p>All together 4 hours of watching. Have fun <img src='http://sitecore.alexiasoft.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Updated:</strong> Now with working links. Sorry!</p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2009/11/19/pdc09-day/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sitecore tells you: &#8220;Specified cast is not valid&#8221; during startup</title>
		<link>http://sitecore.alexiasoft.nl/2009/11/03/sitecore-tells-you-specified-cast-is-not-valid-during-startup/</link>
		<comments>http://sitecore.alexiasoft.nl/2009/11/03/sitecore-tells-you-specified-cast-is-not-valid-during-startup/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 11:32:31 +0000</pubDate>
		<dc:creator>Alex de Groot</dc:creator>
				<category><![CDATA[Sitecore]]></category>

		<guid isPermaLink="false">http://sitecore.alexiasoft.nl/?p=307</guid>
		<description><![CDATA[An annoying issue which came across twice this week: Sitecore was throwing &#8220;Specified cast is not valid&#8221;-Exceptions: And seriously, if there&#8217;s one thing I hate about .NET in general, it are exceptions. 95% of the time they are non self explaining and sometimes even nonsense. This exception would normally take me 20 minutes to solve at least. [...]]]></description>
				<content:encoded><![CDATA[<p>An annoying issue which came across twice this week: Sitecore was throwing &#8220;Specified cast is not valid&#8221;-Exceptions:</p>
<p><img class="alignnone size-medium wp-image-308" title="&quot;Specified Cast is not valid&quot;-exception" src="http://sitecore.alexiasoft.nl/wp-content/2009/11/Specified-Cast-is-not-valid-300x194.png" alt="&quot;Specified Cast is not valid&quot;-exception" width="300" height="194" /></p>
<p>And seriously, if there&#8217;s one thing I hate about .NET in general, it are exceptions. 95% of the time they are non self explaining and sometimes even nonsense. This exception would normally take me 20 minutes to solve at least. But not this time. So how to solve this one?</p>
<p>Basically, this is nothing more than a Database Connection error&#8230; When I added /sitecore behind my url, I received a generic connection failure exception. I had to do some work on my connection string(or start my SQL Server). That&#8217;s all. But Alex, where did it come from? And why does the login page show something different?</p>
<p>Chicken and the egg issue: when accessing an Item we need a (SQL)-Database, but before allowing to access an Item, we need a User, a User needs a (SQL)-Database. And of course, this dependancy became stronger when we introduced Sitecore v6 with the Membership Providers.</p>
<p>So what can we learn from this? Always consult both pages: / and /sitecore. Often, there&#8217;s a different message. Sitecore is all based on context(yes, Sitecore.Context&#8230;). So when you have a problem, always try different entry points to minimize the Context. For example, Sitecore has by default 2 active websites running: &#8216;website&#8217; and &#8216;shell&#8217;. In this case, I tried to access both of them.</p>
<p>Happy coding out there <img src='http://sitecore.alexiasoft.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://sitecore.alexiasoft.nl/2009/11/03/sitecore-tells-you-specified-cast-is-not-valid-during-startup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
