<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/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>Jojo Koshy</title><link>http://blogs.msdn.com/jojok/default.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>INSTALLING REPORTING SERVICES MOSS ADDIN ISSUES</title><link>http://blogs.msdn.com/jojok/archive/2008/10/21/installing-reporting-services-in-sql-server-integration-mode-issue.aspx</link><pubDate>Tue, 21 Oct 2008 19:22:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9009935</guid><dc:creator>Jojo Koshy</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/jojok/comments/9009935.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jojok/commentrss.aspx?PostID=9009935</wfw:commentRss><description>&lt;p&gt;The reporting services addin to that needs to be installed on the webfront end servers gave me some grief last week during installation. My customers installation environment was a x64 bit MOSS box, with SQL Server 2008 Entterprise edition on a seperate box. After sucessfully configuring the SSRS in SharePoint Integration Mode on the SSRS server, MOSS bits also need to be installed on the database server. Remember to use the same bits of MOSS (including Service Packs and patches) as used on other servers on the farm. Please do not install IIS on SQL Server 2008 (SSRS)&amp;nbsp; as SQL Server 2008 does not require IIS, you only need to install MOSS without IIS. &lt;/p&gt; &lt;p&gt;The real issue I faced during installation was that of the SSRS add-in for SQL Server 2008 x64 ( different from one for SQL Server 2005 SP2) , was that the msi used to fail repeatedly and&amp;nbsp; the following steps (From SQL Server&amp;nbsp; BOL)helped fix&amp;nbsp; the issue.&lt;/p&gt; &lt;li&gt;Run &lt;b&gt;SharePointRS.msi / r&lt;/b&gt;sSharePoint_x64.msi &lt;b&gt;SKIPCA=1.&lt;/b&gt;  &lt;li&gt;Find the rsCustomAction.exe file on the file system. This file is copied to your computer by the Setup program. The file will be located in the %Temp% directory. &lt;br&gt;To get the path information for this file, click &lt;b&gt;Start&lt;/b&gt;, click &lt;b&gt;Run&lt;/b&gt;, and then type &lt;b&gt;%temp%&lt;/b&gt;. The file should be located in \Documents and Settings\&amp;lt;&lt;i&gt;your name&lt;/i&gt;&amp;gt;\LOCALS~1\Temp.  &lt;li&gt;Open a command prompt window. To do this, click &lt;b&gt;Start&lt;/b&gt;, click &lt;b&gt;Run&lt;/b&gt;, and type &lt;b&gt;cmd&lt;/b&gt;.  &lt;li&gt;Navigate to the folder that contains the rsCustomAction executable.  &lt;li&gt;Enter the following command:  &lt;p&gt;rsCustomAction.exe /i  &lt;p&gt;This configuration step will take several minutes to complete. The W3SVC service will be restarted during this process.&lt;/p&gt; &lt;li&gt;After Setup is finished, go to Administrator Tools and click &lt;b&gt;SharePoint 3.0 Central Administration&lt;/b&gt;.  &lt;li&gt;Click &lt;b&gt;Application Management&lt;/b&gt;. You should see a new section named &lt;b&gt;Reporting Services&lt;/b&gt;. This section has links to pages used to specify integration settings.  &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/li&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9009935" width="1" height="1"&gt;</description></item><item><title>Activating a feature for all SiteCollections within a WebApplication - MySites</title><link>http://blogs.msdn.com/jojok/archive/2008/10/06/activating-feature-for-each-mysite-site-collection.aspx</link><pubDate>Mon, 06 Oct 2008 07:16:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8977440</guid><dc:creator>Jojo Koshy</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jojok/comments/8977440.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jojok/commentrss.aspx?PostID=8977440</wfw:commentRss><description>&lt;p&gt;Recently I had to get a feature activated over all 800 MySite of a Farm. The approach I choose was to generate an xml list of all the MySIte URL's in my farm and use a Windows application to read the XML file and generate the appropriate activation script. &lt;/p&gt; &lt;p&gt;a) The step to get all the site collections within the WebApplication hosting MySite is to run the command of stsadm -o enumsites -url &lt;a href="http://moss:34078/personal/"&gt;http://moss:34078/&lt;/a&gt; &amp;gt;C:\MySiteList.XML . This xml file would include the URL of all mysites in an XML Node. &lt;/p&gt; &lt;p&gt;b) Assuming all your mysites are under &lt;a href="http://moss:portnumber/sites/personal/"&gt;http://moss:portnumber/sites/personal/&lt;/a&gt;, the next thing you need to do is simply load the XML File in an XML domdocument and generate the appropriate activation script as stsadm -o activateFeature -url &amp;lt;&amp;lt;URLfromtheXMLNode Element&amp;gt;&amp;gt;. Remember to filter out the urls which do not begin with &lt;a href="http://moss:portnumber/sites/personal/"&gt;http://moss:portnumber/sites/personal/&lt;/a&gt;. And you are done. The script can be outputted to a .bat file which you could run later to activate the feature.&lt;/p&gt; &lt;p&gt;You also could do the same using API of SharePoint by looping through the site collection list of a particular webapp. My personal choice would be to go with the above for its simplicity. &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8977440" width="1" height="1"&gt;</description></item><item><title>How to add a .rsds file as datasource for Reporting Service integration in MOSS</title><link>http://blogs.msdn.com/jojok/archive/2008/08/25/how-to-add-a-rsds-file-as-datasource-for-reporting-service-integration-in-moss.aspx</link><pubDate>Mon, 25 Aug 2008 20:09:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8894321</guid><dc:creator>Jojo Koshy</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jojok/comments/8894321.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jojok/commentrss.aspx?PostID=8894321</wfw:commentRss><description>&lt;p&gt;SQL Server 2005 SP2 contains Reporting Services -MOSS integration feature. Reporting Services can be configured to run in Sharepoint Integration Modew where in reports can be managed from MOSS and not from Report Manager. &lt;/p&gt;  &lt;p&gt;After your Reporting Service Report is deployed to SharePoint Report Library you could configure the report to use the common datasource from Data Connection library. The Data Connection library is used to store the datasource files that stores connection info to connect to RS application database (SSAS db / Custom SQL DB etc..) in a central and common location. &lt;/p&gt;  &lt;p&gt;By default the .Rsds file content type does not appear as a new item dropdown. You will need to configure the Data Connection library to include the Report Data Source Content type to have it appear in the New item dropdown.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8894321" width="1" height="1"&gt;</description></item><item><title>Page Layout Publishing feature Page Attribute issue</title><link>http://blogs.msdn.com/jojok/archive/2008/08/25/page-layout-publishing-feature-page-attribute-issue.aspx</link><pubDate>Mon, 25 Aug 2008 09:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8893371</guid><dc:creator>Jojo Koshy</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jojok/comments/8893371.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jojok/commentrss.aspx?PostID=8893371</wfw:commentRss><description>&lt;P&gt;Page layouts can be published and deployed using features. Doing the same using features has advantage as compared to publishing the same using SharePoint Designer. Andrew has a very good post on the same. &lt;A title=http://www.andrewconnell.com/blog/archive/2006/12/20/5451.aspx href="http://www.andrewconnell.com/blog/archive/2006/12/20/5451.aspx" mce_href="http://www.andrewconnell.com/blog/archive/2006/12/20/5451.aspx"&gt;http://www.andrewconnell.com/blog/archive/2006/12/20/5451.aspx&lt;/A&gt; .&lt;/P&gt;
&lt;P&gt;Use the above link to understand steps involved in creating a Feature and Deploying the same using a feature. &lt;/P&gt;
&lt;P&gt;Although you might still deploy the&amp;nbsp;Page Layout&amp;nbsp;using features and solution deployment you still need SPDesigner assistance to create the page.( without saving the same to Content DB). One thing to remember after creating the page using SPDesigner is to remove some additional Page attributes that the designer injects. These attributes cause the page to become unghosted. Before you deploy the page layout created using SPD and deployed using&amp;nbsp; Features and Solution deployment&amp;nbsp; ensure that your page attribute is as follows. &lt;/P&gt;
&lt;P&gt;&amp;lt;%@ Page language="C#"&amp;nbsp;&amp;nbsp; Inherits="Microsoft.SharePoint.Publishing.PublishingLayoutPage,Microsoft.SharePoint.Publishing,Version=12.0.0.0,Culture=neutral,&lt;/P&gt;
&lt;P&gt;PublicKeyToken=71e9bce111e9429c"%&amp;gt;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8893371" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jojok/archive/tags/WCM/default.aspx">WCM</category></item><item><title>How to configure Cache Profile in Page Layout using Features</title><link>http://blogs.msdn.com/jojok/archive/2008/08/25/how-to-configure-cache-profile-in-page-layout-using-features.aspx</link><pubDate>Mon, 25 Aug 2008 08:47:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8893344</guid><dc:creator>Jojo Koshy</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jojok/comments/8893344.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jojok/commentrss.aspx?PostID=8893344</wfw:commentRss><description>&lt;p&gt;Feature framework can be used to deploy Page Layouts. After you have deployed a page layout you could configure the Cache Profile that needs to be assigned to the Page Layout using UI. But what if your requirement was to pre-configure the same with deployment of page layout itself. To know the Cache Profile that needs to go with the Page Layout you need to know its Item ID and the title. Cache Profile is configured as a metadata column on the Master Page gallery. To enable the same I had to modify the elements.xml as shown below.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;pre class="csharpcode"&gt;&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;Elements&lt;/span&gt; &lt;span class="attr"&gt;xmlns&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;http://schemas.microsoft.com/sharepoint/&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt; 
    &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;Module&lt;/span&gt; &lt;span class="attr"&gt;Name&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;PageLayouts&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;Url&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;_catalogs/masterpage&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;Path&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;PageLayouts&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;RootWebOnly&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;TRUE&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt; 
        &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;File&lt;/span&gt; &lt;span class="attr"&gt;Url&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;CareerLayoutsCTFeature.aspx&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;Type&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;GhostableInLibrary&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt; 
            &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;Property&lt;/span&gt; &lt;span class="attr"&gt;Name&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;Title&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;Value&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;HR Page Layout&amp;quot;&lt;/span&gt; &lt;span class="kwrd"&gt;/&amp;gt;&lt;/span&gt; 
            &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;Property&lt;/span&gt; &lt;span class="attr"&gt;Name&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;MasterPageDescription&amp;quot;&lt;/span&gt; &lt;/pre&gt;

&lt;pre class="csharpcode"&gt;&lt;span class="attr"&gt;Value&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;Page with image on top contains an image field and richtext field.&amp;quot;&lt;/span&gt; &lt;span class="kwrd"&gt;/&amp;gt;&lt;/span&gt; 
            &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;Property&lt;/span&gt; &lt;span class="attr"&gt;Name&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;ContentType&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;Value&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;Page Layout&amp;quot;&lt;/span&gt; &lt;span class="kwrd"&gt;/&amp;gt;&lt;/span&gt;       
            &lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;Property&lt;/span&gt; &lt;span class="attr"&gt;Name&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;PublishingAssociatedContentType&amp;quot;&lt;/span&gt; &lt;/pre&gt;

&lt;pre class="csharpcode"&gt;&lt;span class="attr"&gt;Value&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;;#HRPublishingContent;#0x010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130

EC3DB064584E219954237AF3900413CF8A8360B40d08C45631829C1FB0B;#&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;/&amp;gt;&lt;/span&gt; 
&lt;span class="kwrd"&gt;&amp;lt;&lt;/span&gt;&lt;span class="html"&gt;Property&lt;/span&gt; &lt;span class="attr"&gt;Name&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;AnonymousCacheProfile&amp;quot;&lt;/span&gt; &lt;span class="attr"&gt;Value&lt;/span&gt;&lt;span class="kwrd"&gt;=&amp;quot;2;#Public Internet (Purely Anonymous)&amp;quot;&lt;/span&gt;&lt;span class="kwrd"&gt;/&amp;gt;&lt;/span&gt; 
            &lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;File&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt; 
&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;Module&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt; 
&lt;span class="kwrd"&gt;&amp;lt;/&lt;/span&gt;&lt;span class="html"&gt;Elements&lt;/span&gt;&lt;span class="kwrd"&gt;&amp;gt;&lt;/span&gt; &lt;/pre&gt;
&lt;style type="text/css"&gt;
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;&lt;style type="text/css"&gt;

.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }&lt;/style&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8893344" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jojok/archive/tags/WCM/default.aspx">WCM</category></item><item><title>Delegate control for Sharepoint Search</title><link>http://blogs.msdn.com/jojok/archive/2008/04/17/delegate-control-for-sharepoint-search.aspx</link><pubDate>Thu, 17 Apr 2008 04:19:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8400247</guid><dc:creator>Jojo Koshy</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/jojok/comments/8400247.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jojok/commentrss.aspx?PostID=8400247</wfw:commentRss><description>&lt;p&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/ms463169.aspx" target="_blank"&gt;Delegate controls&lt;/a&gt; are a very good mechanism to replace an existing control with another control through a SharePoint Feature. For example a delegate control is declared as &lt;/p&gt;  &lt;p&gt;&amp;lt;SharePoint:DelegateControl runat=&amp;quot;server&amp;quot; ControlId=&amp;quot;SmallSearchInputBox&amp;quot;/&amp;gt; &lt;/p&gt;  &lt;p&gt;The key to have your custom search control appear in place of the above declaration is to ensure the following:&lt;/p&gt;  &lt;p&gt;a) Create a feature with feature details file entries as below. &lt;/p&gt;  &lt;p&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt; &amp;lt;Elements xmlns=&amp;quot;http://schemas.microsoft.com/sharepoint/&amp;quot;&amp;gt; &amp;lt;Control &lt;strong&gt;Id=&amp;quot;SmallSearchInputBox&amp;quot;&lt;/strong&gt; &lt;strong&gt;Sequence=&amp;quot;100&amp;quot;&lt;/strong&gt; Url=&amp;quot;~/_controltemplates/mysearchcontrol.ascx&amp;quot;/&amp;gt; &amp;lt;/Elements&amp;gt;. &lt;/p&gt;  &lt;p&gt;The sequence number and ID is very important. Your sequence number should be the lowest if there are already multiple features registered for the same control Id of &lt;strong&gt;&amp;quot;SmallSearchInputBox&amp;quot;&lt;/strong&gt; .&lt;/p&gt;  &lt;p&gt;b) if you have MOSS installed you will notice that there are already 3 features for SmallSearchInputBox (a quick search on Features folder will reveal this ) and the lowest sequence number is 25. So to have your control appear in place of the standard search box , reduce your sequence number to less than 25. &lt;/p&gt;  &lt;p&gt;c) Install&amp;#160; and Activate the feature.&lt;/p&gt;  &lt;p&gt;d) Restart IIS if necessary. &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8400247" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jojok/archive/tags/General/default.aspx">General</category><category domain="http://blogs.msdn.com/jojok/archive/tags/MOSS+Search/default.aspx">MOSS Search</category></item><item><title>Refine People Search by Additional Managed Profile Properties</title><link>http://blogs.msdn.com/jojok/archive/2008/04/13/refine-people-search-by-additional-managed-profile-properties.aspx</link><pubDate>Sun, 13 Apr 2008 05:06:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8386139</guid><dc:creator>Jojo Koshy</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/jojok/comments/8386139.aspx</comments><wfw:commentRss>http://blogs.msdn.com/jojok/commentrss.aspx?PostID=8386139</wfw:commentRss><description>&lt;p&gt;The default people search in MOSS refines search results based on Department and JobTitle. When a profile property is created it gets automatically added into the Managed Properties collection. If you need to refine people search by additional profile properties then we need to ensure the following &lt;/p&gt;  &lt;p&gt;a) A Profile property needs to be converted to a Managed property. If it is not already present you need to add a new managed property. In our example I have a new profile property called CreditCardType which has its own Managed Property under search setting with the same name CreditCardType.&lt;/p&gt;  &lt;p&gt;b) Open the PeopleSearchResult.aspx in SharePoint Designer. This will appear under the master page gallery of your site. Look for &amp;lt;SearchWC:RefineSearchResults and you can add your own entry below the entries for Department and JobTitle &amp;lt;SEARCHWC:RefineSearchResults runat=&amp;quot;server&amp;quot; Title=&amp;quot;Refine by Card&amp;quot; SearchProperty=&amp;quot;CreditCardType&amp;quot;/&amp;gt; &lt;/p&gt;  &lt;p&gt;c) Next edit the people Search Core WebPart in peopleresult.aspx in Browser and add the following text in the Selected Columns Property ( under &amp;quot;Result Query Options&amp;quot; ).&lt;/p&gt;  &lt;p&gt;&amp;lt;Column Name=&amp;quot;CreditCardType&amp;quot;/&amp;gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/p&gt;  &lt;p&gt;The last step is important, without which the refine by link will not appear. &lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8386139" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/jojok/archive/tags/MOSS+Search/default.aspx">MOSS Search</category></item></channel></rss>