<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ivan Fioravanti&#039;s Blog</title>
	<atom:link href="http://ivanfioravanti.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ivanfioravanti.wordpress.com</link>
	<description>.NET for all ! WCF, WF, WPF, Silverlight and Software Factories</description>
	<lastBuildDate>Tue, 06 Dec 2011 12:47:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ivanfioravanti.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ivan Fioravanti&#039;s Blog</title>
		<link>http://ivanfioravanti.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ivanfioravanti.wordpress.com/osd.xml" title="Ivan Fioravanti&#039;s Blog" />
	<atom:link rel='hub' href='http://ivanfioravanti.wordpress.com/?pushpress=hub'/>
		<item>
		<title>NoSQL engines do not like System.Decimal</title>
		<link>http://ivanfioravanti.wordpress.com/2011/12/01/nosql-engines-do-not-like-system-decimal/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/12/01/nosql-engines-do-not-like-system-decimal/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 21:10:14 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[MongoDB]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[SimpleDB]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/?p=130</guid>
		<description><![CDATA[Here we are with another discovery to be aware of when you plan to go on the cloud or more in general to use some NoSQL engine: System.Decimal is not supported. We are making a test drive of 3 NoSQL engines: Azure Table Storage: key &#8211; value Amazon SimpleDB: key – value MongoDB: document based [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=130&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here we are with another discovery to be aware of when you plan to go on the cloud or more in general to use some NoSQL engine: System.Decimal is not supported.</p>
<p>We are making a test drive of 3 NoSQL engines:</p>
<ul>
<li>Azure Table Storage: key &#8211; value </li>
<li>Amazon SimpleDB: key – value </li>
<li>MongoDB: document based </li>
</ul>
<p>All of them do not support System.Decimal, therefore if you want to store currencies, exchange rates, large amounts with decimal digits, you’ll have to find a workaround. For the POC we have decided to go for double type, but during communications with real POS terminals ISO8583 protocol is used. In it amounts are divided in 2 separate parts:</p>
<ul>
<li>Amount: total amount with integer part followed by mantissa without separatore (i.e. 100,91 becomes 10091) </li>
<li>MinorUnit: number of decimal digits (i.e. considering 100,91 it is 2) </li>
</ul>
<p>Here follows a short summary table of types supported by the 3 engines:</p>
<table border="0" cellspacing="0" cellpadding="2" width="401">
<tbody>
<tr>
<td width="102" align="center"><strong>Tipo</strong></td>
<td width="97" align="center"><strong>Azure Table Storage</strong></td>
<td width="100" align="center"><strong>Amazon SimpleDB</strong></td>
<td width="100" align="center"><strong>MongoDB</strong></td>
</tr>
<tr>
<td valign="top" width="102">byte[]</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">bool</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">DateTime</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">double</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">Guid</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">Int32 o int</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">Int64 o long</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">String</td>
<td width="97" align="center">X</td>
<td valign="top" width="100" align="center">X (max 1024 bytes)</td>
<td valign="top" width="100" align="center">X</td>
</tr>
<tr>
<td valign="top" width="102">regex</td>
<td width="97" align="center">&#160;</td>
<td valign="top" width="100" align="center">&#160;</td>
<td valign="top" width="100" align="center">X</td>
</tr>
</tbody>
</table>
<p>Amazon has decided to use a simpler technical implementation for its NoSQL on the cloud, but this lead to some limitations: values are all stored as strings with a maximum size limited to 1024 bytes and comparison is lexicographic, therefore for SimpleDB 10 is before 2, so developers have to do some additional work (losing a bit of performance on application code) to handle numeric values: <a href="http://aws.amazon.com/articles/1232">http://aws.amazon.com/articles/1232</a></p>
<p>Note: it’s always possible to implement an event handler to be called during reading/writing operation against NoSQL above, to be used to convert Decimal to string and viceversa.</p>
<p>Stay tuned for the next stop!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=130&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/12/01/nosql-engines-do-not-like-system-decimal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
		<item>
		<title>Azure Queue Service: maximum message size is 8KB or 64KB?</title>
		<link>http://ivanfioravanti.wordpress.com/2011/11/29/azure-queue-service-maximum-message-size-is-8kb-or-64kb/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/11/29/azure-queue-service-maximum-message-size-is-8kb-or-64kb/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 09:51:21 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/?p=128</guid>
		<description><![CDATA[Here we are with a small problem encountered: the maximum size of the Azure Queue has been increased from 8KB to 64KB from version 18.8.2011. Cool! A little more space available is great, especially on messages with lots of metadata to be sent. But if like me you try to create a message with a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=128&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here we are with a small problem encountered: the maximum size of the Azure Queue has been increased from 8KB to 64KB from version 18.8.2011. Cool! A little more space available is great, especially on messages with lots of metadata to be sent.    <br />But if like me you try to create a message with a size of 10KB using the SDK 1.5 (October 2011), you will receive an error.</p>
<p>Now to figure out exactly where the problem was I used JustDecompile (since the good old Reflector is no longer free, I tried the beta of JustDecompile from Telerik) and I decompiled the CloudQueueMessage by Microsoft.WindowsAzure.StorageClient.dll and &#8230; surprise! In the constructor there’s a nice hard-coded limit to 8192 bytes in the MaxMessageSize property:    </p>
<blockquote><p>CloudQueueMessage.MaxMessageSize = (long) 8192;      </p>
</blockquote>
<p>How to solve the problem? By downloading the 1.6 SDK Azure where the client libraries have been updated with the new limits and the same dll decompiled now has:    </p>
<blockquote><p>CloudQueueMessage.MaxMessageSize = (long) 65536;</p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=128&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/11/29/azure-queue-service-maximum-message-size-is-8kb-or-64kb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
		<item>
		<title>Our cloud adventure has begun! Azure and then AWS</title>
		<link>http://ivanfioravanti.wordpress.com/2011/11/28/our-cloud-adventure-has-begun-azure-and-then-aws/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/11/28/our-cloud-adventure-has-begun-azure-and-then-aws/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 21:16:08 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/?p=125</guid>
		<description><![CDATA[Finally we started! A nice proof of concept of a distributed architecture Cloud &#8211; OnPremise. First we’ll try Azure and then AWS. I&#8217;ll try to post some of travel notes&#160; of this adventure with problems, advantages, strengths and weaknesses, performance identified in order to help future adventurers. We&#8217;ll try everything a lot of things: Azure [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=125&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally we started! A nice proof of concept of a distributed architecture Cloud &#8211; OnPremise. First we’ll try Azure and then AWS.    <br />I&#8217;ll try to post some of travel notes&#160; of this adventure with problems, advantages, strengths and weaknesses, performance identified in order to help future adventurers.     </p>
<p>We&#8217;ll try everything a lot of things:</p>
<ul>
<li>Azure Table Storage &#8211; SimpleDB: as NoSQL to save and retrieve large amounts of data </li>
<li>Blob Storage &#8211; S3 to store large sets of data </li>
<li>Azure Queue &#8211; SQS: for communication between the different roles within the same region </li>
<li>Azure SQL &#8211; MySql: for relational data on the cloud </li>
<li>SQL Data Sync: to synchronize distributed databases cloud – OnPremise </li>
<li>Bus Service &#8211; SNS + SQS: to use publish/subscribe pattern for data distribution between the region and OnPremise </li>
<li>Traffic Manager: to automatically balance the client calls to the nearest Azure region</li>
<li>MongoDB: there will be experiments to compare a NoSQL Document based like MongoDB with the key-value solutions offered by Microsoft and Amazon</li>
<li>Other: MEF, AutoMapper, AppFabric, Caching, TPL </li>
</ul>
<p>Let’s start the journey!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=125&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/11/28/our-cloud-adventure-has-begun-azure-and-then-aws/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
		<item>
		<title>Azure Table Storage and the FirstOrDefault operator</title>
		<link>http://ivanfioravanti.wordpress.com/2011/11/28/azure-storage-table-and-the-firstordefault-operator/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/11/28/azure-storage-table-and-the-firstordefault-operator/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 18:35:03 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Table Storage]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/?p=121</guid>
		<description><![CDATA[Today I’ve lost the whole afternoon fighting against this damn issue so I want to share this with everyone to save your time! I was performing a simple query against Azure Table Storage using PartitionKey and RowKey in order to retrieve a specific entity in a specific table (i.e.: http://127.0.0.1:10002/devstoreaccount1/Spaceship(PartitionKey=&#8217;380&#8242;,RowKey=&#8217;1234&#8242;)). During tests, the first scenario [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=121&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I’ve lost the whole afternoon fighting against this damn issue so I want to share this with everyone to save your time!</p>
<p>I was performing a simple query against Azure Table Storage using PartitionKey and RowKey in order to retrieve a specific entity in a specific table (i.e.: <a title="http://127.0.0.1:10002/devstoreaccount1/Cheque(PartitionKey=&#039;380&#039;,RowKey=&#039;1234&#039;)" href="http://127.0.0.1:10002/devstoreaccount1/Spaceship(PartitionKey='380',RowKey='1234'">http://127.0.0.1:10002/devstoreaccount1/Spaceship(PartitionKey=&#8217;380&#8242;,RowKey=&#8217;1234&#8242;)</a>).</p>
<p>During tests, the first scenario was where no entities with give PK and RK were present and I was using a simple query ending with FirstOrDefault operator like&#160; </p>
<blockquote><p>TableRepository.FindWhere(p =&gt; p.PartitionKey == entity.Spaceship.CountryCode.ToString() &amp;&amp;      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; p.RowKey == entity.SerialNumber).FirstOrDefault();</p>
</blockquote>
<p>and I was expecting null but in reality I started to get 404 error with detailed message below:</p>
<blockquote><p>&lt;error xmlns=&quot;<a href="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata&quot;">http://schemas.microsoft.com/ado/2007/08/dataservices/metadata&quot;</a>&gt;       <br />&#160; &lt;code&gt;ResourceNotFound&lt;/code&gt;       <br />&#160; &lt;message xml:lang=&quot;en-US&quot;&gt;The specified resource does not exist.&lt;/message&gt;       <br />&lt;/error&gt;</p>
</blockquote>
<p>After several hours struggling with various tests I discovered following Pearls of Azure Wisdom:</p>
<p>- Internet Explorer can’t be used to query directly table storage account, it does not return results at all, because </p>
<p>- You have to set <strong>IgnoreResourceNotFoundException = true</strong> in the TableServiceContext in order to receive null when an entity is not found instead of error 404</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=121&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/11/28/azure-storage-table-and-the-firstordefault-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
		<item>
		<title>TF208002 error during editing of Product Planning.xlsm</title>
		<link>http://ivanfioravanti.wordpress.com/2011/11/15/tf208002-error-during-editing-of-product-planning-xlsm/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/11/15/tf208002-error-during-editing-of-product-planning-xlsm/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 17:39:03 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[TFS]]></category>
		<category><![CDATA[TFS Advanced]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/2011/11/15/tf208002-error-during-editing-of-product-planning-xlsm/</guid>
		<description><![CDATA[Product Planning.xlsm of my project was corrupted. At the opening it gave me the error: TF208002: “The name that you specified for the column header is a reserved name for this work item list. Choose a different name and try again.” Clearly I have tried everything but without success Solution: Take the file directly from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=119&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Product Planning.xlsm of my project was corrupted. At the opening it gave me the error: TF208002: “The name that you specified for the column header is a reserved name for this work item list. Choose a different name and try again.”</p>
<p>Clearly I have tried everything but without success <img style="border-style:none;" class="wlEmoticon wlEmoticon-sadsmile" alt="Sad smile" src="http://ivanfioravanti.files.wordpress.com/2011/11/wlemoticon-sadsmile.png?w=640" />    </p>
<p>Solution:</p>
<ul>
<li>Take the file directly from Agile 5 Process Template from Microsoft (MSF for Agile Software Developmentv5.0 \ Windows SharePoint Services \ Shared Documents \ Project Management) and copy it to your Project Portal</li>
<li>Open it and press Edit Workbook</li>
<li>Go to the Team tab and select Configure -&gt; Server Connection</li>
<li>Press OK on the popup</li>
<li>Select your project and press Connect</li>
<li>Press List and select New Query Product Planning pressing OK</li>
<li>Save and you have your file again!</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=119&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/11/15/tf208002-error-during-editing-of-product-planning-xlsm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>

		<media:content url="http://ivanfioravanti.files.wordpress.com/2011/11/wlemoticon-sadsmile.png" medium="image">
			<media:title type="html">Sad smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Remote programming session Milan-Verona-Seattle</title>
		<link>http://ivanfioravanti.wordpress.com/2011/08/04/remote-programming-session-milan-verona-seattle/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/08/04/remote-programming-session-milan-verona-seattle/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 23:23:25 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[Various]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://ivanfioravanti.wordpress.com/?p=114</guid>
		<description><![CDATA[Wow! This is really a distributed pair programming session! 3 dev scattered across 2 cities in Italy and Seattle, sharing desktop with TeamViewer from Windows and MacOS, using skype for the conference call. Technology breaks any barrier!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=114&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wow! This is really a distributed pair programming session! 3 dev scattered across 2 cities in Italy and Seattle, sharing desktop with TeamViewer from Windows and MacOS, using skype for the conference call.</p>
<p>Technology breaks any barrier!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=114&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/08/04/remote-programming-session-milan-verona-seattle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
		<item>
		<title>Assigning a work item to a group in TFS</title>
		<link>http://ivanfioravanti.wordpress.com/2011/04/04/assigning-a-work-item-to-a-group-in-tfs/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/04/04/assigning-a-work-item-to-a-group-in-tfs/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 08:00:48 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/2011/04/04/assigning-a-work-item-to-a-group-in-tfs/</guid>
		<description><![CDATA[During ALM can happen that a specific work item can&#8217;t be assigned directly to a single person. A typical sample can be a bug before triage. In cases such this the best is being able to use a group like &#34;BugKillers&#34;. The procedure below enables you to assign work items to groups or to their [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=105&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During ALM can happen that a specific work item can&#8217;t be assigned directly to a single person. A typical sample can be a bug before triage. In cases such this the best is being able to use a group like &quot;BugKillers&quot;.</p>
<p>The procedure below enables you to assign work items to groups or to their users.</p>
<p>In order to enable this you have to:</p>
<ol>
<li>open work item type Bug in the specific project     <br /><a href="http://ivanfioravanti.files.wordpress.com/2011/04/bug.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Bug" border="0" alt="Bug" src="http://ivanfioravanti.files.wordpress.com/2011/04/bug_thumb.png?w=296&#038;h=333" width="296" height="333" /></a></li>
<li>modify Assigned To field adding ALLOWEDVALUES rule with the list of all TFS groups containing users that can receive a work item assignment. <u>be sure to leave Exclude Groups unchecked</u>      <br /><a href="http://ivanfioravanti.files.wordpress.com/2011/04/allowedvalues.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="AllowedValues" border="0" alt="AllowedValues" src="http://ivanfioravanti.files.wordpress.com/2011/04/allowedvalues_thumb.png?w=438&#038;h=360" width="438" height="360" /></a></li>
<li>remove VALIDUSER rule, because this is responsible for not showing groups in the dropdown list of values for Assigned To field</li>
<li>save and close</li>
</ol>
<p>Now if you open a new bug you&#8217;ll be able to assign it to groups or directly to their users </p>
<p><a href="http://ivanfioravanti.files.wordpress.com/2011/04/result.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Result" border="0" alt="Result" src="http://ivanfioravanti.files.wordpress.com/2011/04/result_thumb.png?w=437&#038;h=156" width="437" height="156" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=105&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/04/04/assigning-a-work-item-to-a-group-in-tfs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>

		<media:content url="http://ivanfioravanti.files.wordpress.com/2011/04/bug_thumb.png" medium="image">
			<media:title type="html">Bug</media:title>
		</media:content>

		<media:content url="http://ivanfioravanti.files.wordpress.com/2011/04/allowedvalues_thumb.png" medium="image">
			<media:title type="html">AllowedValues</media:title>
		</media:content>

		<media:content url="http://ivanfioravanti.files.wordpress.com/2011/04/result_thumb.png" medium="image">
			<media:title type="html">Result</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m now a Microsoft Certified Trainer!</title>
		<link>http://ivanfioravanti.wordpress.com/2011/03/20/im-now-a-microsoft-certified-trainer/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/03/20/im-now-a-microsoft-certified-trainer/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 08:44:00 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[TFS]]></category>
		<category><![CDATA[MCT]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/2011/03/20/im-now-a-microsoft-certified-trainer/</guid>
		<description><![CDATA[Finally I did it I’m a Microsoft Certified Trainer and on Monday I will deliver my first course: MOC50430 related to TFS 2010 administration!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=104&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally I did it I’m a Microsoft Certified Trainer and on Monday I will deliver my first course: MOC50430 related to TFS 2010 administration!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=104&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/03/20/im-now-a-microsoft-certified-trainer/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
		<item>
		<title>Team Foundation Server 2010 SP1 Final</title>
		<link>http://ivanfioravanti.wordpress.com/2011/03/08/team-foundation-server-2010-sp1-final/</link>
		<comments>http://ivanfioravanti.wordpress.com/2011/03/08/team-foundation-server-2010-sp1-final/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 22:09:11 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/2011/03/08/team-foundation-server-2010-sp1-final/</guid>
		<description><![CDATA[SP1 for TFS 2010 has been released together with SP1 for VS 2010 and it contains a lot of bug fixes. For more details: http://support.microsoft.com/kb/2182621<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=103&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SP1 for TFS 2010 has been released together with SP1 for VS 2010 and it contains a lot of bug fixes. For more details: <a href="http://support.microsoft.com/kb/2182621">http://support.microsoft.com/kb/2182621</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=103&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2011/03/08/team-foundation-server-2010-sp1-final/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
		<item>
		<title>ApplicationServerWorkflowInstanceStore ConnectionString not found by AppFabric</title>
		<link>http://ivanfioravanti.wordpress.com/2010/12/29/appfabric-cannot-find-connection-string-for-connection-name-applicationserverworkflowinstancestoreconnectionstring/</link>
		<comments>http://ivanfioravanti.wordpress.com/2010/12/29/appfabric-cannot-find-connection-string-for-connection-name-applicationserverworkflowinstancestoreconnectionstring/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 13:16:02 +0000</pubDate>
		<dc:creator>ivanfioravanti</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[AppFabric]]></category>

		<guid isPermaLink="false">https://ivanfioravanti.wordpress.com/2010/12/29/appfabric-cannot-find-connection-string-for-connection-name-applicationserverworkflowinstancestoreconnectionstring/</guid>
		<description><![CDATA[We started using Windows Server AppFabric for a Silverlight/RIA application and had a problem during configuration on one of our server. The problem was that when we opened .xamlx file to check service health we received the following error: “Cannot find connection string for connection name &#8216;ApplicationServerWorkflowInstanceStoreConnectionString&#8217;” Solution: After deep investigation we discovered that the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=93&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We started using <a href="http://msdn.microsoft.com/en-us/windowsserver/ee695849" target="_blank">Windows Server AppFabric</a> for a Silverlight/RIA application and had a problem during configuration on one of our server. The problem was that when we opened .xamlx file to check service health we received the following <strong>error</strong>:</p>
<p>“<strong>Cannot find connection string for connection name &#8216;ApplicationServerWorkflowInstanceStoreConnectionString&#8217;</strong>”</p>
<p><strong>Solution</strong>: After deep investigation we discovered that the issue was due to the fact that AppPool used to host the service was configured with <strong>Enable 32-bit applications</strong> flag set to <strong>true</strong>, therefore it was reading a different machine config file (for 32-bit apps), that is not changed by the AppFabric configuration wizard (Bug? By design? I’ll open a Connect ticket). Setting flag to <strong>false</strong> solved the issue!</p>
<p>Hope this helps</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ivanfioravanti.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ivanfioravanti.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ivanfioravanti.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ivanfioravanti.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ivanfioravanti.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ivanfioravanti.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ivanfioravanti.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ivanfioravanti.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ivanfioravanti.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ivanfioravanti.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ivanfioravanti.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ivanfioravanti.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ivanfioravanti.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ivanfioravanti.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ivanfioravanti.wordpress.com&amp;blog=5522635&amp;post=93&amp;subd=ivanfioravanti&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ivanfioravanti.wordpress.com/2010/12/29/appfabric-cannot-find-connection-string-for-connection-name-applicationserverworkflowinstancestoreconnectionstring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4aa04a5dc5066423fd82df601d971bc3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ivanfioravanti</media:title>
		</media:content>
	</item>
	</channel>
</rss>
