<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://didierdanse.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>didierdanse.net - Development News</title><link>http://didierdanse.net/blogs/dev_en/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>SharePoint: How to run a long running operation?</title><link>http://didierdanse.net/blogs/dev_en/archive/2011/03/21/sharepoint-how-to-run-a-long-running-operation.aspx</link><pubDate>Mon, 21 Mar 2011 08:45:01 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:433</guid><dc:creator>Didier Danse</dc:creator><slash:comments>62</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=433</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2011/03/21/sharepoint-how-to-run-a-long-running-operation.aspx#comments</comments><description>&lt;p&gt;Sometimes, we need to run long operations using a synchronous mode. As SharePoint is based on a web technology, performing a long operation can be complex without having timeouts and so on. In SharePoint, we have the possibility to declare an operation as a long running operation.&lt;/p&gt;  &lt;p&gt;During the operation (or a set of operations), page is displayed with the classic &lt;em&gt;loading&lt;/em&gt; logo with your own message (in the following screenshot, values are default ones) :&lt;/p&gt;  &lt;p&gt;&lt;img src="http://3.bp.blogspot.com/_g-JN_WB_wo4/S89wWt_bmAI/AAAAAAAAAbo/tWH4XWe3m3c/s640/Processing.png" width="585" height="210" alt="" /&gt;&lt;/p&gt;  &lt;p&gt;This can be done using this simple code:&lt;/p&gt;  &lt;div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;padding-bottom:4px;line-height:12pt;background-color:#f4f4f4;margin:20px 0px 10px;padding-left:4px;width:97.5%;padding-right:4px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;padding-top:4px;" id="codeSnippetWrapper"&gt;   &lt;div style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;" id="codeSnippet"&gt;     &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;&lt;span style="color:#0000ff;"&gt;using&lt;/span&gt; (SPLongOperation operation = &lt;span style="color:#0000ff;"&gt;new&lt;/span&gt; SPLongOperation(&lt;span style="color:#0000ff;"&gt;this&lt;/span&gt;.Page))&lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;{&lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;    operation.LeadingHTML = &lt;span style="color:#006080;"&gt;&amp;quot;Performing operations ...&amp;quot;&lt;/span&gt;;&lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;    operation.TrailingHTML = &lt;span style="color:#006080;"&gt;&amp;quot;Please wait while the operations are performed.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt; This can last a few minutes.&amp;quot;&lt;/span&gt;;&lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;    operation.Begin();&lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;                    &lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;    &lt;span style="color:#008000;"&gt;// Operations that have to be performed&lt;/span&gt;&lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;      &lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;    operation.End(&lt;span style="color:#006080;"&gt;&lt;a href="http://yourserver/destinationpage.aspx"&gt;http://yourserver/destinationpage.aspx&lt;/a&gt;&lt;/span&gt;);&lt;/pre&gt;


    &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;}&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;That’s all for today!&lt;/p&gt;

&lt;p&gt;____&lt;/p&gt;

&lt;p&gt;Didier Danse – &lt;a href="http://didierdanse.net"&gt;http://didierdanse.net&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Microsoft Most Valuable Professional SharePoint 
  &lt;br /&gt;&lt;a href="http://www.devoteam.lu"&gt;Devoteam Luxembourg&lt;/a&gt; – &lt;a href="http://www.devoteam.com"&gt;Devoteam Group&lt;/a&gt;&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=433" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Dev/default.aspx">Dev</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/.NET/default.aspx">.NET</category></item><item><title>SharePoint 2010: Farm, web application, sites collection, sites and subsites, how to know what to use?</title><link>http://didierdanse.net/blogs/dev_en/archive/2011/03/12/sharepoint-2010-farm-web-application-sites-collection-sites-and-subsites-how-to-know-what-to-use.aspx</link><pubDate>Sat, 12 Mar 2011 18:02:42 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:429</guid><dc:creator>Didier Danse</dc:creator><slash:comments>41</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=429</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2011/03/12/sharepoint-2010-farm-web-application-sites-collection-sites-and-subsites-how-to-know-what-to-use.aspx#comments</comments><description>&lt;p&gt;&lt;em&gt;&lt;font size="1"&gt;Original post: &lt;/font&gt;&lt;/em&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/archive/2009/09/13/sharepoint-farm-web-application-sites-collection-sites-and-subsites-how-to-know-what-to-use.aspx" target="_blank"&gt;&lt;em&gt;&lt;font size="1"&gt;SharePoint: Farm, web application, sites collection, sites and subsites, how to know what to use?&lt;/font&gt;&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Because of the scalability of SharePoint, each one who has to organize a SharePoint infrastructure is quickly set against an important question: What to use and at what time? There isn’t only one answer to this. Each element that composes an complete Infrastrcutre has typical properties and objectives. So we have to use the best container according to objectives and content.&lt;/p&gt;  &lt;p&gt;There is some kind of &lt;em&gt;containers&lt;/em&gt;. The most important are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;font color="#0000ff"&gt;1a) SharePoint Farm (&lt;em&gt;SPFarm&lt;/em&gt; from a SharePoint point of view)&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font color="#0000ff"&gt;1b) Services applications&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font color="#0000ff"&gt;2) Web Application (&lt;em&gt;SPWebApplication&lt;/em&gt;)&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font color="#0000ff"&gt;3) Sites Collection (&lt;em&gt;SPSite&lt;/em&gt;)&lt;/font&gt; &lt;/li&gt;    &lt;li&gt;&lt;font color="#800000"&gt;4) Sites (&lt;em&gt;SPWeb&lt;/em&gt;) &lt;/font&gt;&lt;/li&gt;    &lt;li&gt;&lt;font color="#800000"&gt;4) Sub sites (&lt;em&gt;SPWeb&lt;/em&gt;)&lt;/font&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Mainly the first four elements (in blue) are used for technical reasons while the two other ones are used to structure sites and data from a logical point of view.&lt;/p&gt;  &lt;p&gt;So have a quick look through elements that are used in a SharePoint infrastructure. For more details, please use the best tool in the developers’ world: Internet.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;1.A) SharePoint Farm&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;A SharePoint farm is a group of front-end servers, applicative servers (Shared Services), indexing servers and database servers. A SharePoint farm can be deployed to a particular location according to objectives (Internet access, geographical localization, …).&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_59E5C3DD.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_6BB231DD.png" width="682" height="398" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;font color="#0000ff"&gt;&lt;strong&gt;&lt;u&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;font color="#0000ff"&gt;&lt;strong&gt;&lt;u&gt;1.B) &lt;/u&gt;&lt;/strong&gt;&lt;strong&gt;&lt;u&gt;&lt;font&gt;Service applications&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font&gt;This is a set of services that are available at farm level. Because of this, it is shared between the different web applications and site collections.&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font&gt;These services are responsible of:&lt;/font&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;font&gt;User Profile (profile properties, synch parameters) &lt;/font&gt;&lt;/li&gt;    &lt;li&gt;&lt;font&gt;Search (scopes, properties mappings, content sources, …) &lt;/font&gt;&lt;/li&gt;    &lt;li&gt;&lt;font&gt;Excel Services &lt;/font&gt;&lt;/li&gt;    &lt;li&gt;&lt;font&gt;Business Data Catalog &lt;/font&gt;&lt;/li&gt;    &lt;li&gt;&lt;font&gt;… &lt;/font&gt;&lt;font style="background-color:#ffff00;"&gt;&lt;/font&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_thumb7_21D9DA06.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image_thumb7" border="0" alt="image_thumb7" src="http://didierdanse.net/blogs/dev_en/image_thumb7_thumb_7C4036D7.png" width="644" height="300" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Each service can be enabled or disabled on each SharePoint servers. This allows SharePoint infrastructure to be the most efficient and met security and availability requirements.&lt;/p&gt;  &lt;p&gt;&lt;font color="#0000ff"&gt;&lt;strong&gt;&lt;u&gt;2) Web &lt;/u&gt;&lt;/strong&gt;&lt;strong&gt;&lt;u&gt;Application&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;There is nothing new for ITs or developers that already worked with sites or applications powered by ASP.NET, PHP or all server-side technologies. A web application characteristics are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;A site in IIS &lt;/li&gt;    &lt;li&gt;A particular url &lt;/li&gt;    &lt;li&gt;A authentication method associated with this web application &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_5995C883.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_49C60DB2.png" width="648" height="480" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;We can notice that a web application uses its own database in a SharePoint context (to be more precise, it is the case for new application. There is the possibility to create Web Applications extensions. These extensions can use different parameters that the main web application. We will use this when we want to share data between web applications and use different authentication modes for example).&lt;/p&gt;  &lt;p&gt;Furthermore, SharePoint is an ASP.NET application so it uses Web.config files. We will be able to add differents entries according to the objectives of the web application. We will remove some features if the web application is used by partners for example.&lt;/p&gt;  &lt;p&gt;Finally, a web application is always associated with a SSP.&lt;/p&gt;  &lt;p&gt;&lt;font color="#0000ff"&gt;&lt;strong&gt;&lt;u&gt;3) Sites &lt;/u&gt;&lt;/strong&gt;&lt;strong&gt;&lt;u&gt;Collection&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;A sites collection is a virtual container (there is no physical file as it is the case for previously described elements) and sites collection structure is stored in a configuration database.&lt;/p&gt;  &lt;p&gt;Form an IT point of view, sites collection has some advantages. The main advantages are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Content quota templates &lt;/li&gt;    &lt;li&gt;Ease of maintenance (backup / restore is performed by site collection by default) &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_thumb15_7DE0DCDE.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image_thumb15" border="0" alt="image_thumb15" src="http://didierdanse.net/blogs/dev_en/image_thumb15_thumb_19C1EC0A.png" width="644" height="275" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;From a content manager point of view, we will notice that an administrator is defined each site collection. This administrator can manage:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Second level Recycle bin &lt;/li&gt;    &lt;li&gt;Customized search &lt;/li&gt;    &lt;li&gt;Users of the site collection &lt;/li&gt;    &lt;li&gt;… &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Lastly, site collections is used to bring customized elements together and shared them with a audience that will access data across this sites collection (per example a department):&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Master Pages &lt;/li&gt;    &lt;li&gt;Images &lt;/li&gt;    &lt;li&gt;Sites and lists Templates &lt;/li&gt;    &lt;li&gt;Web parts &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;There is always a root site in a site collection.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_thumb22_35A2FB35.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image_thumb22" border="0" alt="image_thumb22" src="http://didierdanse.net/blogs/dev_en/image_thumb22_thumb_045410D5.png" width="644" height="302" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#800000"&gt;&lt;strong&gt;&lt;u&gt;4) &lt;/u&gt;&lt;/strong&gt;&lt;strong&gt;&lt;u&gt;Sites and subsites&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;In the beginning of this post, we told a lot of time of IT guys, a little bit about developers but I didn’t told about about end users even though they are the driving force of SharePoint content.&lt;/p&gt;  &lt;p&gt;At this level, everything is related to content management. According to the users permissions, they can:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Create sites &lt;/li&gt;    &lt;li&gt;Create lists &lt;/li&gt;    &lt;li&gt;Attach workflow to lists &lt;/li&gt;    &lt;li&gt;Grant permissions &lt;/li&gt;    &lt;li&gt;Restore deleted content &lt;/li&gt;    &lt;li&gt;A lot of others operations! &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;At this level, there is only one important thing to manage and organize data: company best practices and rules. It doesn’t matter where data are logically based, it will be physically stored in the same database. However, data should be spread all around sites and sub-sites. Do not hesitate to use important feature as permissions inheritance. It will help to organize data efficiently.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_5FD88B12.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_47A4FAEA.png" width="631" height="291" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;It is possible to add some code or reporting tools but the most important thing is the end-user and power-user training.&lt;/p&gt;  &lt;p&gt;Here is a SharePoint structure example:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;font color="#0000ff"&gt;Farm &lt;/font&gt;      &lt;ul&gt;       &lt;li&gt;&lt;font color="#0000ff"&gt;Web Application 1 &lt;/font&gt;          &lt;ul&gt;           &lt;li&gt;&lt;font color="#0000ff"&gt;&lt;font color="#0000ff"&gt;Sites collection &lt;/font&gt;A (with top-level site)&lt;/font&gt;               &lt;ul&gt;               &lt;li&gt;&lt;font color="#800000"&gt;Site A.1 &lt;/font&gt;                  &lt;ul&gt;                   &lt;li&gt;&lt;font color="#800000"&gt;Site A.1.1 &lt;/font&gt;&lt;/li&gt;                    &lt;li&gt;&lt;font color="#800000"&gt;Site A.1.2 &lt;/font&gt;&lt;/li&gt;                 &lt;/ul&gt;               &lt;/li&gt;                &lt;li&gt;&lt;font color="#800000"&gt;Site A.2 &lt;/font&gt;&lt;/li&gt;             &lt;/ul&gt;           &lt;/li&gt;            &lt;li&gt;&lt;font color="#0000ff"&gt;&lt;font color="#0000ff"&gt;Sites collection &lt;/font&gt;B (with top-level site)&lt;/font&gt;               &lt;ul&gt;               &lt;li&gt;&lt;font color="#800000"&gt;Site B.1 &lt;/font&gt;                  &lt;ul&gt;                   &lt;li&gt;&lt;font color="#800000"&gt;Site B.1.1 &lt;/font&gt;                      &lt;ul&gt;                       &lt;li&gt;&lt;font color="#800000"&gt;Site B.1.1.1 &lt;/font&gt;&lt;/li&gt;                     &lt;/ul&gt;                   &lt;/li&gt;                 &lt;/ul&gt;               &lt;/li&gt;                &lt;li&gt;&lt;font color="#800000"&gt;Site B.2&lt;/font&gt; &lt;/li&gt;             &lt;/ul&gt;           &lt;/li&gt;         &lt;/ul&gt;       &lt;/li&gt;        &lt;li&gt;&lt;font color="#0000ff"&gt;Web Application 2 &lt;/font&gt;          &lt;ul&gt;           &lt;li&gt;&lt;font color="#0000ff"&gt;Sites collection C (with top-level site)&lt;/font&gt;               &lt;ul&gt;               &lt;li&gt;&lt;font color="#800000"&gt;[…] &lt;/font&gt;&lt;/li&gt;             &lt;/ul&gt;           &lt;/li&gt;            &lt;li&gt;&lt;font color="#0000ff"&gt;&lt;font color="#0000ff"&gt;Sites collection &lt;/font&gt;D (with top-level site)&lt;/font&gt;               &lt;ul&gt;               &lt;li&gt;&lt;font color="#800000"&gt;[…] &lt;/font&gt;&lt;/li&gt;             &lt;/ul&gt;           &lt;/li&gt;         &lt;/ul&gt;       &lt;/li&gt;     &lt;/ul&gt;   &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;There is a lot things to write about this topic. I hope that you will have an understandable overview of SharePoint infrastructure and also the reasons of getting information from Internet or specialist.&lt;/p&gt;        &lt;p&gt;____&lt;/p&gt;  &lt;p&gt;Didier Danse – &lt;a href="http://didierdanse.net"&gt;http://didierdanse.net&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Microsoft Most Valuable Professional SharePoint    &lt;br /&gt;&lt;a href="http://www.devoteam.lu"&gt;Devoteam Luxembourg&lt;/a&gt; – &lt;a href="http://www.devoteam.com"&gt;Devoteam Group&lt;/a&gt;&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=429" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Administration/default.aspx">Administration</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/2010/default.aspx">2010</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Architecture/default.aspx">Architecture</category></item><item><title>SharePoint: How to display simple external page, a folder or a web application integrated in SharePoint</title><link>http://didierdanse.net/blogs/dev_en/archive/2011/02/18/sharepoint-how-to-display-simple-external-page-a-folder-or-a-web-application-integrated-in-sharepoint.aspx</link><pubDate>Fri, 18 Feb 2011 14:55:37 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:417</guid><dc:creator>Didier Danse</dc:creator><slash:comments>29</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=417</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2011/02/18/sharepoint-how-to-display-simple-external-page-a-folder-or-a-web-application-integrated-in-sharepoint.aspx#comments</comments><description>&lt;p&gt;Displaying an external is quite often required by the users. To do this, here is a small procedure to perform this operation:&lt;/p&gt;  &lt;p&gt;In the page you want to display the embedded page, click on “Edit Page” if you have the &lt;em&gt;update&lt;/em&gt; permission for this page. Add a web part and select &lt;em&gt;Content Editor&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_692039CB.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_055D561F.png" width="1013" height="255" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;After this, you will have to indicate the corresponding page. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_7D853DAF.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_79B77312.png" width="1012" height="322" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;For example, fill the information with &lt;a href="http://www.google.be"&gt;&lt;em&gt;www.google.be&lt;/em&gt;&lt;/a&gt;. The page is now visible as an embedded page.&lt;/p&gt;  &lt;p&gt;.&lt;a href="http://didierdanse.net/blogs/dev_en/image_011332C0.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_29EE21FC.png" width="1005" height="476" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;You can do the same and display a Shared Folder. Logon user permissions will still be applied. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_2BFAFAF8.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_21E659CD.png" width="710" height="384" /&gt;&lt;/a&gt;&lt;/p&gt;      &lt;p&gt;____&lt;/p&gt;  &lt;p&gt;Didier Danse – &lt;a href="http://didierdanse.net"&gt;http://didierdanse.net&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Microsoft Most Valuable Professional SharePoint   &lt;br /&gt;&lt;a href="http://www.devoteam.lu"&gt;Devoteam Luxembourg&lt;/a&gt; – &lt;a href="http://www.devoteam.com"&gt;Devoteam Group&lt;/a&gt;&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=417" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/End-user/default.aspx">End-user</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/2010/default.aspx">2010</category></item><item><title>SharePoint Health Analyzer: “Built-in accounts are used as application pool or service identities” but I don’t find the service in the services list. What can I do?</title><link>http://didierdanse.net/blogs/dev_en/archive/2011/02/05/sharepoint-health-analyzer-built-in-accounts-are-used-as-application-pool-or-service-identities-but-i-don-t-find-the-service-in-the-services-list-what-can-i-do.aspx</link><pubDate>Sat, 05 Feb 2011 15:20:22 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:413</guid><dc:creator>Didier Danse</dc:creator><slash:comments>27</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=413</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2011/02/05/sharepoint-health-analyzer-built-in-accounts-are-used-as-application-pool-or-service-identities-but-i-don-t-find-the-service-in-the-services-list-what-can-i-do.aspx#comments</comments><description>&lt;p&gt;If your service account is not in the services list (i.e. SPTraceV4), you will not be able to manage the service through the central administration user interface. As you should use SharePoint to perform this operation, you will have to use PowerShell. You can use the following script:&lt;/p&gt;  &lt;p&gt;   &lt;div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;padding-bottom:4px;line-height:12pt;background-color:#f4f4f4;margin:20px 0px 10px;padding-left:4px;width:97.5%;padding-right:4px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;padding-top:4px;" id="codeSnippetWrapper"&gt;     &lt;div style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;" id="codeSnippet"&gt;       &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$servicename = &lt;span style="color:#006080;"&gt;&amp;quot;SPTraceV4&amp;quot;&lt;/span&gt;&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$managedaccountname = &lt;span style="color:#006080;"&gt;&amp;quot;DOMAIN\sp_admin&amp;quot;&lt;/span&gt;&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;&amp;#160;&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$farm = Get-SPFarm&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$SPTimerv4 = $farm.Services | Where {$_.Name -eq $servicename}&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$SPTimerV4NewAccount = Get-SPManagedAccount $managedaccountname&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$SPTimerv4.ProcessIdentity.CurrentIdentityType = &lt;span style="color:#006080;"&gt;&amp;quot;SpecificUser&amp;quot;&lt;/span&gt;&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:#f4f4f4;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$SPTimerv4.ProcessIdentity.ManagedAccount = $SPTimerv4NewAccount&lt;/pre&gt;


      &lt;pre style="border-bottom-style:none;text-align:left;padding-bottom:0px;line-height:12pt;background-color:white;margin:0em;border-left-style:none;padding-left:0px;width:100%;padding-right:0px;font-family:&amp;#39;Courier New&amp;#39;, courier, monospace;direction:ltr;border-top-style:none;color:black;border-right-style:none;font-size:8pt;overflow:visible;padding-top:0px;"&gt;$SPTimerv4.ProcessIdentity.Update()&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
As you can see, you will have to use a managed account. If your account is not yet registered as a managed account, you will have to register it before performing this operation.&lt;/p&gt;

&lt;p&gt;____&lt;/p&gt;

&lt;p&gt;Didier Danse 
  &lt;br /&gt;&lt;a href="http://www.devoteam.lu" target="_blank"&gt;Devoteam Luxembourg&lt;/a&gt; – &lt;a href="http://www.devoteam.com" target="_blank"&gt;Devoteam Group&lt;/a&gt;&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=413" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Administration/default.aspx">Administration</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Powershell/default.aspx">Powershell</category></item><item><title>SharePoint: How to activate anonymous access</title><link>http://didierdanse.net/blogs/dev_en/archive/2011/02/02/sharepoint-how-to-activate-anonymous-access.aspx</link><pubDate>Wed, 02 Feb 2011 18:54:19 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:412</guid><dc:creator>Didier Danse</dc:creator><slash:comments>38</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=412</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2011/02/02/sharepoint-how-to-activate-anonymous-access.aspx#comments</comments><description>&lt;p&gt;&lt;em&gt;The following screenshots are based on SharePoint 2010 but the way to do the operation is the same with SharePoint 2007.&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;SharePoint can be used for Public Internet facing web sites. Internet web sites are mostly available for anonymous users. By default, SharePoint ask for credentials, which is not the expected behavior for these Internet sites.&lt;/p&gt;  &lt;p&gt;SharePoint can be easily opened to anonymous users. Just follow these steps:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Enable anonymous access for the web application&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;As authentication settings are active at web application level, you have to go to the Central Administration &amp;gt; Application Management &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_0CCC3DFB.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_27B49BA2.png" width="282" height="120" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Select the Web Application you want to use and click on Authentication Providers&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_78EEE2FF.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_2CB6D951.png" width="415" height="162" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The default authentication provider is &lt;em&gt;Windows&lt;/em&gt;. Click on &lt;em&gt;default&lt;/em&gt; and you will be able to manage some settings for this provider.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_7D84EDB9.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_15A85815.png" width="520" height="164" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;One of them is &lt;em&gt;Anonymous access&lt;/em&gt;. Check the corresponding check box and now you can set some permissions for anonymous users.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_5499D8B0.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_39ED3C97.png" width="514" height="375" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Global permissions for anonymous users&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Back to the Web applications list. Click on &lt;em&gt;Anonymous Policy&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_4D2DF336.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_36F7D7E4.png" width="459" height="147" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;You can now set global permissions for anonymous users.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_4EAF0F4A.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_020AD2A7.png" width="535" height="400" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Allow anonymous users to access your site&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Go to your public web site.&lt;/p&gt;  &lt;p&gt;Depending on your architecture, login prompt is display or not. When you are authenticated with an account that has access to site settings, click on &lt;em&gt;Site Permissions&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_675E368D.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_1085CECC.png" width="293" height="451" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Because you have activated the anonymous access at Web application level, you have a button in the ribbon named &lt;em&gt;Anonymous access&lt;/em&gt;. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_6E4DC345.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_33F24D64.png" width="375" height="147" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Select the permissions for the anonymous access&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_27842A3B.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_498C8601.png" width="244" height="183" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;That’s all! Now anonymous users can access your SharePoint site! That’s the first step in implementing Web Content Management using SharePoint.&lt;/p&gt;  &lt;p&gt;____&lt;/p&gt;  &lt;p&gt;Didier Danse    &lt;br /&gt;Devoteam Luxembourg – Devoteam Group&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=412" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Infrastructure/default.aspx">Infrastructure</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Administration/default.aspx">Administration</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/2010/default.aspx">2010</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Enterprise+Content+Management/default.aspx">Enterprise Content Management</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Architecture/default.aspx">Architecture</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/wcm/default.aspx">wcm</category></item><item><title>SharePoint: How to create a site collection and store data in a specific database</title><link>http://didierdanse.net/blogs/dev_en/archive/2011/01/02/sharepoint-how-to-create-a-site-collection-and-store-data-in-a-specific-database.aspx</link><pubDate>Sun, 02 Jan 2011 18:25:05 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:399</guid><dc:creator>Didier Danse</dc:creator><slash:comments>36</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=399</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2011/01/02/sharepoint-how-to-create-a-site-collection-and-store-data-in-a-specific-database.aspx#comments</comments><description>&lt;p&gt;Databases management is important. As SharePoint use a lot of databases, databases management is an important element. Because of this, a specific database is used for storing some specific group of data. Generally, the group of data is the site collection scope.&lt;/p&gt;  &lt;p&gt;By default, user interface doesn’t allow to create a site collection and use a specific database.&lt;/p&gt;  &lt;p&gt;There is different ways to perform the operation depending on your needs:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Use of STSADM &lt;i&gt;createsiteinnewdb&lt;/i&gt; command; &lt;/li&gt;    &lt;li&gt;Use of &lt;i&gt;New-SPSite&lt;/i&gt; Powershell command; &lt;/li&gt;    &lt;li&gt;Use of user interface to change databases status. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;b&gt;&lt;u&gt;STSADM &lt;i&gt;createsiteinnewdb&lt;/i&gt; command&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;The c&lt;i&gt;reatesiteinnewdb&lt;/i&gt; has the same objective than &lt;i&gt;createsite&lt;/i&gt; command but there are some extra parameters. 4 of them concern database settings: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;databaseuser; &lt;/li&gt;    &lt;li&gt;databasepassword; &lt;/li&gt;    &lt;li&gt;databaseserver; &lt;/li&gt;    &lt;li&gt;databasename. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;So you create a new database and use it to store your site collection data.&lt;/p&gt;  &lt;p&gt;For more information about &lt;i&gt;createsiteinnewdb&lt;/i&gt;, visit the following site: &lt;a href="http://technet.microsoft.com/en-us/library/cc262407(office.12).aspx"&gt;http://technet.microsoft.com/en-us/library/cc262407(office.12).aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;u&gt;&lt;i&gt;New-SPSite&lt;/i&gt; Powershell command&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Powershell is powerful in the SharePoint context. &lt;i&gt;New-SPSite&lt;/i&gt; command can be used to create your site collection and store data in a specific existing database (&lt;i&gt;ContentDatabase&lt;/i&gt; parameter). So if you want to create a new DB, you have to perform the operation before using &lt;i&gt;New-SPSite&lt;/i&gt;. &lt;/p&gt;  &lt;p&gt;Here is a sample of this command:&lt;/p&gt;  &lt;p&gt;&lt;i&gt;New-SPSite http://&amp;lt;sitecollectionUrl&amp;gt; -OwnerAlias “&amp;lt;domain&amp;gt;\&amp;lt;user&amp;gt;” -ContentDatabase &amp;lt;DB_Name&amp;gt; -Name “Demo”&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;For more information about &lt;i&gt;New-SPSite&lt;/i&gt;, visit the following site: &lt;a href="http://technet.microsoft.com/en-us/library/ff607937.aspx"&gt;http://technet.microsoft.com/en-us/library/ff607937.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;u&gt;User interface and database status&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;SharePoint databases have two statuses:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Ready ; &lt;/li&gt;    &lt;li&gt;Offline. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Offline seems to be “Not available” but exact meaning is “&lt;i&gt;when the database status is set to Ready, the database is available for hosting new Site Collections. When the database status is set to Offline, no new Site Collections can be created”.&lt;/i&gt; Offline DBs can still be used for the existing site collections.&lt;/p&gt;  &lt;p&gt;So you can manage available databases. To perform this operation, go to the central administration and follow this path:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;Central Administration &amp;gt; Application Management &amp;gt; Manage content databases&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;This last link points to: http://&amp;lt;SharePointCentralAdminUrl&amp;gt;/_admin/CNTDBADM.aspx&lt;/p&gt;  &lt;p&gt;Set all databases statuses to Offline except for the one you want to use.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_4AC4FD59.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_62D841E7.png" width="558" height="499" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;If all databases are set to Offline, you will receive the following error message when trying to create a new site collection:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/clip_image004_4CFE33BD.jpg"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="clip_image004" border="0" alt="clip_image004" src="http://didierdanse.net/blogs/dev_en/clip_image004_thumb_5F668472.jpg" width="508" height="297" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;The operation that you are attempting to perform cannot be completed successfully. No content databases in the web application were available to store your site collection. The existing content databases may have reached the maximum number of site collections, or be set to read-only, or be offline, or may already contain a copy of this site collection. Create another content database for the Web application and then try the operation again.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Go back to content databases management page and set a database as &lt;i&gt;Ready&lt;/i&gt;.&lt;/p&gt;  &lt;p&gt;Now you can plan backup for databases easily.&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=399" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Infrastructure/default.aspx">Infrastructure</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Administration/default.aspx">Administration</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SQL+Server/default.aspx">SQL Server</category></item><item><title>An existing SharePoint web application “cannot be found”, why?</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/12/12/an-existing-sharepoint-web-application-cannot-be-found-why.aspx</link><pubDate>Sun, 12 Dec 2010 17:55:53 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:391</guid><dc:creator>Didier Danse</dc:creator><slash:comments>22</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=391</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/12/12/an-existing-sharepoint-web-application-cannot-be-found-why.aspx#comments</comments><description>&lt;p&gt;When you develop with SharePoint, sometimes you have some confusing errors. Here is one of them…&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_225D22C0.png"&gt;&lt;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="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_2A14EF95.png" width="744" height="465" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The complete error message is&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;em&gt;The Web application at http://&amp;lt;servername&amp;gt;/&amp;lt;sitename&amp;gt; could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.&lt;/em&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;It is not complex to succeed having this code working. Just look at the following screenshot:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_1B0D74E1.png"&gt;&lt;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="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_1DC30407.png" width="749" height="468" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Now it is running. So, what’s the difference? &lt;/p&gt;  &lt;p&gt;Have a look to the toolbar and you will see the only difference…&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_517AD48B.png"&gt;&lt;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="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_334D16D7.png" width="356" height="110" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Yes, this message is not clear but the main cause is that you are developing a application targeting x86 (32 bits) environment and running it on a 64 bits environment… Be careful about this. Do not forget to use development, test and production environments with similar configurations.&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=391" width="1" height="1"&gt;</description></item><item><title>Print as PDF option with Office 2010</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/06/01/print-as-pdf-option-with-office-2010.aspx</link><pubDate>Tue, 01 Jun 2010 12:34:00 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:327</guid><dc:creator>Didier Danse</dc:creator><slash:comments>21</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=327</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/06/01/print-as-pdf-option-with-office-2010.aspx#comments</comments><description>&lt;p&gt;Because Microsoft released a &lt;em&gt;Print as PDF&lt;/em&gt; addin for Office 2007, a lot of people have the same reaction: go to the Internet and search for &lt;em&gt;Print as PDF addin for Office 2010&lt;/em&gt; but they don’t find any download. &lt;/p&gt;  &lt;p&gt;With Office 2010, we should call this feature &lt;em&gt;Save as PDF&lt;/em&gt;. Let’s have a look to the save as file type options:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_2CF2FCEA.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_52104756.png" width="483" height="318" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You will find &lt;em&gt;PDF (*.pdf)&lt;/em&gt; option. That’s all…&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=327" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Office/default.aspx">Office</category></item><item><title>Enter the real interoperability ECM World with Content Management Interoperability Services (CMIS)</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/05/31/enter-the-real-interoperability-ecm-world-with-content-management-interoperability-services-cmis.aspx</link><pubDate>Mon, 31 May 2010 18:17:14 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:326</guid><dc:creator>Didier Danse</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=326</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/05/31/enter-the-real-interoperability-ecm-world-with-content-management-interoperability-services-cmis.aspx#comments</comments><description>&lt;p&gt;How many times did you hear “This product is better for this part and this product is better for all the rest”? I am pretty sure that you are not able to answer this exactly. Most of you will say “a lot of time”. Every time there is this question, we heard “We will integrate both solutions”. But what does “integrate” mean? Most part of time, the answer is “develop custom features that will meet the other solution web services specifications”. It works… until any change! &lt;/p&gt;  &lt;p&gt;More ways two solutions can communicate more issues you will face out. Because of this, ECM leaders (Microsoft, IBM, EMC, Alfresco, OpenText, SAP and Oracle) worked on interoperability specifications for a lot of months (about two years!) and proposed a standard way to implement communication points in the major ECM solutions. This standard is called Content Management Interoperability Services (CMIS). CMIS will reduce difficulties about interoperability in a heterogeneous environment.&lt;/p&gt;  &lt;p&gt;This specification has been proposed to Oasis consortium. After public vote, CMIS specifications have been approved.&lt;/p&gt;  &lt;p&gt;Read the complete announcement from Oasis : &lt;a href="http://www.oasis-open.org/news/oasis-news-2010-05-04.php"&gt;http://www.oasis-open.org/news/oasis-news-2010-05-04.php&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Normally, CMIS Connector will be available in the beginning of July through the SharePoint Administrator Toolkit. We hope that all vendors will implement and deploy CMIS soon.&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=326" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Web+Service/default.aspx">Web Service</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Enterprise+Content+Management/default.aspx">Enterprise Content Management</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Architecture/default.aspx">Architecture</category></item><item><title>Software Development Kits and Training Kits available for developers</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/05/23/software-development-kits-and-training-kits-available-for-developers.aspx</link><pubDate>Sun, 23 May 2010 21:15:50 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:324</guid><dc:creator>Didier Danse</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=324</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/05/23/software-development-kits-and-training-kits-available-for-developers.aspx#comments</comments><description>&lt;p&gt;A few days ago, someone ask me where he was able to find some information about SharePoint and Office development. Here are some interesting links:&lt;/p&gt;  &lt;p&gt;SharePoint 2010: &lt;a title="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=f0c9daf3-4c54-45ed-9bde-7b4d83a8f26f" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=f0c9daf3-4c54-45ed-9bde-7b4d83a8f26f"&gt;http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=f0c9daf3-4c54-45ed-9bde-7b4d83a8f26f&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;SQL Server 208 R2: &lt;a title="http://www.microsoft.com/downloads/details.aspx?familyid=FFFAAD6A-0153-4D41-B289-A3ED1D637C0D&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?familyid=FFFAAD6A-0153-4D41-B289-A3ED1D637C0D&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=FFFAAD6A-0153-4D41-B289-A3ED1D637C0D&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Office 2010: &lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=b90fadab-f4f9-4452-aa61-ed7bd5d8111e&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=b90fadab-f4f9-4452-aa61-ed7bd5d8111e&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=b90fadab-f4f9-4452-aa61-ed7bd5d8111e&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Identity: &lt;a title="http://www.microsoft.com/downloads/details.aspx?familyid=C3E315FA-94E2-4028-99CB-904369F177C0&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?familyid=C3E315FA-94E2-4028-99CB-904369F177C0&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=C3E315FA-94E2-4028-99CB-904369F177C0&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;There are others SDK and Training Kits that are available. Do not hesitate to do have a deeper look to.&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=324" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Office/default.aspx">Office</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SQL+Server/default.aspx">SQL Server</category></item><item><title>Windows Server 2008 Server doesn’t detect any wireless, what can I do?</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/05/22/windows-server-2008-server-doesn-t-detect-any-wireless-what-can-i-do.aspx</link><pubDate>Sat, 22 May 2010 08:15:07 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:323</guid><dc:creator>Didier Danse</dc:creator><slash:comments>8</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=323</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/05/22/windows-server-2008-server-doesn-t-detect-any-wireless-what-can-i-do.aspx#comments</comments><description>&lt;p&gt;You installed your wireless network adapter and you feel happy until you see that Windows Server 2008 (R2) is not able to find any network. Does your adapter is not compatible with Windows Server 2008? Maybe… But before buying another one, be sure that Windows Server has the &lt;strong&gt;Windows LAN Service&lt;/strong&gt; feature is active. &lt;/p&gt;  &lt;p&gt;Go to the server &lt;em&gt;Configuration tasks&lt;/em&gt;. Click on Add features.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/Untitled2_56C0FA56.jpg"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="Untitled 2" border="0" alt="Untitled 2" src="http://didierdanse.net/blogs/dev_en/Untitled2_thumb_5B570510.jpg" width="244" height="99" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Check &lt;em&gt;Wireless LAN Service&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/Untitled1_1A4885AC.jpg"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="Untitled 1" border="0" alt="Untitled 1" src="http://didierdanse.net/blogs/dev_en/Untitled1_thumb_0AC573DD.jpg" width="244" height="78" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;and enjoy!&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Thanks a lot to Marc Donnay for the tip!&lt;/em&gt;&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=323" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Windows+Server/default.aspx">Windows Server</category></item><item><title>SharePoint 2010 Certifications</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/05/21/sharepoint-2010-certifications.aspx</link><pubDate>Fri, 21 May 2010 06:24:40 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:321</guid><dc:creator>Didier Danse</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=321</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/05/21/sharepoint-2010-certifications.aspx#comments</comments><description>&lt;p&gt;New SharePoint certifications are (nearly) here. By reading the content of these certifications, it seems that they are a little bit difficult compared to previous SharePoint certifications.&lt;/p&gt;  &lt;p&gt;You will find more information by following the links:&lt;/p&gt;  &lt;p&gt;Exam 70-667: TS: Microsoft SharePoint 2010, Configuring &lt;a title="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-667&amp;amp;locale=en-us" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-667&amp;amp;locale=en-us"&gt;http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-667&amp;amp;locale=en-us&lt;/a&gt;&lt;/p&gt;  &lt;h3&gt;&lt;/h3&gt;  &lt;p&gt;Exam 70-668: PRO: Microsoft SharePoint 2010, Administrator &lt;a title="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-667&amp;amp;locale=en-us" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-668&amp;amp;locale=en-us"&gt;http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-668&amp;amp;locale=en-us&lt;/a&gt;&lt;/p&gt;  &lt;h3&gt;&lt;/h3&gt;  &lt;p&gt;Exam 70-573: TS: Microsoft SharePoint 2010, Application Development &lt;a href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-573&amp;amp;locale=en-us"&gt;http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-573&amp;amp;locale=en-us&lt;/a&gt;&lt;/p&gt;  &lt;h3&gt;&lt;/h3&gt;  &lt;p&gt;Exam 70-576: PRO: Designing and Developing Microsoft SharePoint 2010 Applications &lt;a title="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-667&amp;amp;locale=en-us" href="http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-576&amp;amp;locale=en-us"&gt;http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-576&amp;amp;locale=en-us&lt;/a&gt;&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=321" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category></item><item><title>How to show Developer tab in Office 2010</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/05/17/how-to-show-developer-tab-in-office-2010.aspx</link><pubDate>Mon, 17 May 2010 11:50:58 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:318</guid><dc:creator>Didier Danse</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=318</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/05/17/how-to-show-developer-tab-in-office-2010.aspx#comments</comments><description>&lt;p&gt;Because there is some changes in Office 2010 about the way to display the developer tab in Microsoft Office 2010, here is a quick update about how to do this with Office 2010.&lt;/p&gt;  &lt;p&gt;The following screenshots come from Microsoft Word.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Go to &lt;em&gt;File&lt;/em&gt; tab;&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image12_29A980D6.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image12_thumb_1809703E.png" width="307" height="489" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt; In the &lt;em&gt;Customize Ribbon&lt;/em&gt; zone, check &lt;em&gt;Developer&lt;/em&gt; menu item.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image15_63889DF5.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image15_thumb_17F94A71.png" width="592" height="484" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt; Go back to your application. The developer tab is there.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_336E26A7.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_254F37AA.png" width="244" height="115" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=318" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Office/default.aspx">Office</category></item><item><title>SharePoint 2010: All about Document Set</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/05/16/sharepoint-2010-all-about-document-set.aspx</link><pubDate>Sun, 16 May 2010 19:56:45 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:316</guid><dc:creator>Didier Danse</dc:creator><slash:comments>82</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=316</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/05/16/sharepoint-2010-all-about-document-set.aspx#comments</comments><description>&lt;p&gt;There is a lot of situations that requires the use of multiple files. These files are grouped and has to be considered as an unique item.&lt;/p&gt;  &lt;p&gt;With SharePoint 2007, the only way to group documents together were to use folders. Now we have a way to manage, edit and shared metadata between each element of a group of files directly in the user interface without any custom development. This feature is named &lt;em&gt;Document Set&lt;/em&gt;. &lt;/p&gt;  &lt;p&gt;&lt;em&gt;Document set&lt;/em&gt; is new in SharePoint 2010 and is really an interesting concept that we were waiting for a long time. So let have a global overview of this new content type available as a site collection feature.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Quick overview&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;When adding a new document set, this screen pops up:&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image28_6D5F1563.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image28_thumb_17EAD074.png" width="598" height="500" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;After saving the new document set, it is available as an item in a SharePoint document library. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image31_3A5F5F2F.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image31_thumb_0EAE9533.png" width="397" height="79" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Document set is displayed as a web page with some metadata about the document set and a list with contained documents.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image34_072325C6.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image34_thumb_13B0D2E2.png" width="598" height="205" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;As you may know, ribbon is new in SharePoint 2010 and is available on each page. When a document set is loaded, the following ribbon items are available. We will discuss each of these features in the next paragraphs.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_797069BD.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_5CF377DD.png" width="243" height="53" /&gt;&lt;/a&gt;&amp;#160;&lt;a href="http://didierdanse.net/blogs/dev_en/image37_6A598AE3.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image37_thumb_57385E37.png" width="244" height="61" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Versioning&lt;/strong&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;There is the possibility to create version of a document set and also versions for the documents in the document set. So you can create a lot of documents versions before creating a document set version.&lt;/p&gt;  &lt;p&gt;Document versioning is performed as usual. According to your settings, new version is created when uploading the document or modify it. Version history is similar to the feature that was available in SharePoint 2007.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_4F40BBD5.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_551B5F6E.png" width="555" height="435" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Because Document Set is a content type, we can use versioning and so on. Document set version is a snapshot of related documents with the latest versions captured when clicking on &lt;em&gt;Capture Version&lt;/em&gt; in the ribbon.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_140CE00A.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_52FE60A5.png" width="435" height="96" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Because minor versions can be considered as draft, we can check which documents versions should be used: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Latest major versions only;&lt;/li&gt;    &lt;li&gt;Latest major or minor versions.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;We also have the possibility to add a comment to the document set version.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_7CFE5ECD.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_50E161DC.png" width="618" height="367" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Document set version history will display versions of the document set itself but also the captured versions of the documents in the document set. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_2F81BC40.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_3966ADAB.png" width="512" height="407" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Metadatas&lt;/p&gt;  &lt;p&gt;Metadatas can be shared (applied) across the different documents in the document set. So you just have to add the metas to the document set and every document in the document set will use the same metadatas.&lt;/p&gt;  &lt;p&gt;It is a very simple feature but it is really something that was missing before. Now you can perform more efficient searches as every file has the metadata on it. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Workflows&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Version capture and content changes can happened on document sets. These events can be used to run workflows. Really useful for global approve on a set of documents. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_1153FE8C.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_3DFCB865.png" width="683" height="177" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Because documents contained in the document set are group of unique documents, workflow can be attached to each document as we did with SharePoint 2007. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_3598E30E.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_4226902A.png" width="690" height="222" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;By using both workflow levels, we can run a lot of scenarios. Approval can be applied to individual documents and to a set of documents.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Permissions&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Permissions set at document level are, by default, inherited from the document set itself. &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;a href="http://didierdanse.net/blogs/dev_en/image_6C268E52.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_270DC11C.png" width="504" height="129" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;You can configure permissions on each individual document within the document set. Sometimes it is necessary to grant access to a document to a particular user but not all the other documents. That’s the same way to manage permissions within a document library.&lt;/p&gt;  &lt;p&gt;Because there is a lot of other possibilities, we will just tell that every feature available at document level is available for document set level. Just remember that document set is considered as an item.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Download&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Unfortunately, there is no way to download all the files in the document set.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Document Set Welcome page&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Document set have welcome page that can be customized. As you can see on the following screen, there is the possibility to add some web part on the welcome page of a document set.&lt;/p&gt;  &lt;p&gt;It can really be useful for displaying information about the document set itself as the document set is can be considered as an single item or a set of different files that are related each other.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image1_465067EF.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image1_thumb_15D9E379.png" width="633" height="583" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;How to set up document set?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Document set is a content type. Content type will be available as soon as &lt;em&gt;Document Sets&lt;/em&gt; feature will be activated. You need to have permissions at site collection level before activating this feature.&lt;/p&gt;  &lt;p&gt;To enable this content type, go through the following screens:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Click on &lt;em&gt;Site Settings&lt;/em&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_468CEB24.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_0C9DA838.png" width="255" height="110" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Go to &lt;em&gt;Site collection features&lt;/em&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_24C11293.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_5FA8455C.png" width="506" height="247" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Activate the &lt;em&gt;Document Sets&lt;/em&gt; feature &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_42BF2087.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_01446E2E.png" width="637" height="76" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The new content type is now available but need to be activated at document library level.&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Click on &lt;em&gt;Library Settings&lt;/em&gt; for the library that will contains &lt;em&gt;Document Sets&lt;/em&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_35789774.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_1FAEAF17.png" width="203" height="106" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;You have to go to the advanced settings page… &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_4CC39BE5.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_73257F30.png" width="223" height="120" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;… and then check the &lt;em&gt;allow management of content types&lt;/em&gt; box. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image19_2B63F649.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image19_thumb_0ADCB697.png" width="304" height="112" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;On the &lt;em&gt;Settings&lt;/em&gt; page, click on &lt;em&gt;Add a new content type&lt;/em&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image22_7C320AB1.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image22_thumb_2F219B19.png" width="597" height="286" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Now, &lt;em&gt;Document Set&lt;/em&gt; is available in your document library &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image25_2729F8B7.png"&gt;&lt;img style="border-right-width:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image25_thumb_4D1FA90D.png" width="266" height="184" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Have a great day!&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=316" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/2010/default.aspx">2010</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Document+management/default.aspx">Document management</category></item><item><title>Microsoft License Advisor</title><link>http://didierdanse.net/blogs/dev_en/archive/2010/05/14/microsoft-license-advisor.aspx</link><pubDate>Fri, 14 May 2010 22:07:04 GMT</pubDate><guid isPermaLink="false">30b92a27-2adf-4ac9-9a55-506f6f2b3817:315</guid><dc:creator>Didier Danse</dc:creator><slash:comments>11</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://didierdanse.net/blogs/dev_en/rsscomments.aspx?PostID=315</wfw:commentRss><comments>http://didierdanse.net/blogs/dev_en/archive/2010/05/14/microsoft-license-advisor.aspx#comments</comments><description>&lt;p&gt;Do you need to have information about Microsoft licensing? There is a website that is available from Microsoft. You can configure products and calculate costs.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://didierdanse.net/blogs/dev_en/image_5B4D804B.png"&gt;&lt;img style="border-bottom:0px;border-left:0px;display:inline;border-top:0px;border-right:0px;" title="image" border="0" alt="image" src="http://didierdanse.net/blogs/dev_en/image_thumb_0475188A.png" width="554" height="291" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;a title="http://www.microsoft.com/licensing/mla/default.aspx" href="http://www.microsoft.com/licensing/mla/default.aspx"&gt;http://www.microsoft.com/licensing/mla/default.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;According to first tests, it should be interesting that the tool select automatically requirements. Merging information on product description with information in the tool will permit to have a global overview of cost.&lt;/p&gt;&lt;img src="http://didierdanse.net/aggbug.aspx?PostID=315" width="1" height="1"&gt;</description><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/SharePoint/default.aspx">SharePoint</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/English/default.aspx">English</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/InfoPath/default.aspx">InfoPath</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Office/default.aspx">Office</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/Windows+7/default.aspx">Windows 7</category><category domain="http://didierdanse.net/blogs/dev_en/archive/tags/licencing/default.aspx">licencing</category></item></channel></rss>