<?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>Federated Search Connector in Windows 7 with ASP.NET MVC</title><link>http://blogs.msdn.com/johanl/archive/2009/04/01/federated-search-provider-in-windows-7-with-asp-net-mvc.aspx</link><description>I was asked to translate this article from Swedish so here it goes: In my effort to create a somewhat realistic scenario, I’ve now tried to create a federated search-component for Windows 7 based on an ASP.NET MVC aplication. In other words, I’m exposing</description><dc:language>sv-SE</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Anith &amp;raquo; Federated Search Provider in Windows 7 with ASP.NET MVC</title><link>http://blogs.msdn.com/johanl/archive/2009/04/01/federated-search-provider-in-windows-7-with-asp-net-mvc.aspx#9527909</link><pubDate>Thu, 02 Apr 2009 00:31:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9527909</guid><dc:creator>Anith &amp;raquo; Federated Search Provider in Windows 7 with ASP.NET MVC</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.anith.com/?p=25552"&gt;http://www.anith.com/?p=25552&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Federated Search Provider in Windows 7 with ASP.NET MVC</title><link>http://blogs.msdn.com/johanl/archive/2009/04/01/federated-search-provider-in-windows-7-with-asp-net-mvc.aspx#9528071</link><pubDate>Thu, 02 Apr 2009 01:51:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9528071</guid><dc:creator>Jason</dc:creator><description>&lt;p&gt;Excellent!!! &amp;nbsp;Great article just as I thought :)&lt;/p&gt;
</description></item><item><title>re: Federated Search Connector in Windows 7 with ASP.NET MVC</title><link>http://blogs.msdn.com/johanl/archive/2009/04/01/federated-search-provider-in-windows-7-with-asp-net-mvc.aspx#9528834</link><pubDate>Thu, 02 Apr 2009 11:31:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9528834</guid><dc:creator>Mikael Söderström</dc:creator><description>&lt;p&gt;Looks great! :-)&lt;/p&gt;
&lt;p&gt;But what happends if you go to for example &amp;quot;/Contact/Details/lol&amp;quot;?&lt;/p&gt;
&lt;p&gt;If you have something like this:&lt;/p&gt;
&lt;p&gt;routes.MapRoute(&amp;quot;ProfileDetails&amp;quot;,&lt;/p&gt;
&lt;p&gt;	&amp;quot;{id}&amp;quot;,&lt;/p&gt;
&lt;p&gt;	new { controller = &amp;quot;Contact&amp;quot;, action = &amp;quot;Details&amp;quot; },&lt;/p&gt;
&lt;p&gt;	new { id = @&amp;quot;\d+&amp;quot; }&lt;/p&gt;
&lt;p&gt;);&lt;/p&gt;
&lt;p&gt;If you go to /12345 you will get directly to that customer, and I think you can change this:&lt;/p&gt;
&lt;p&gt;public ActionResult Details(string id)&lt;/p&gt;
&lt;p&gt;To this:&lt;/p&gt;
&lt;p&gt;public ActionResult Details(int id)&lt;/p&gt;
&lt;p&gt;Just my €0,02,&lt;/p&gt;
&lt;p&gt;Mikael S&amp;#246;derstr&amp;#246;m&lt;/p&gt;
</description></item><item><title>re: Federated Search Connector in Windows 7 with ASP.NET MVC</title><link>http://blogs.msdn.com/johanl/archive/2009/04/01/federated-search-provider-in-windows-7-with-asp-net-mvc.aspx#9532269</link><pubDate>Sun, 05 Apr 2009 21:41:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9532269</guid><dc:creator>JohanLindfors</dc:creator><description>&lt;p&gt;Mikael S&amp;#246;derstr&amp;#246;m: Great suggestion, but since the article is primarily on how to integrate the search feature with Windows 7, I'll leave it as is!&lt;/p&gt;
</description></item><item><title>re: Federated Search Connector in Windows 7 with ASP.NET MVC</title><link>http://blogs.msdn.com/johanl/archive/2009/04/01/federated-search-provider-in-windows-7-with-asp-net-mvc.aspx#9534227</link><pubDate>Mon, 06 Apr 2009 22:10:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9534227</guid><dc:creator>bpaddock</dc:creator><description>&lt;p&gt;Great post!&lt;/p&gt;
&lt;p&gt;Have you looked at the Federated Search Implementer's Guide that we posted a few weeks ago?&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/downloads/details.aspx?familyid=c709a596-a9e9-49e7-bcd4-319664929317&amp;amp;displaylang=en&amp;amp;tm"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=c709a596-a9e9-49e7-bcd4-319664929317&amp;amp;displaylang=en&amp;amp;tm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;That should help you improve the search results a bit.&lt;/p&gt;
&lt;p&gt;For example, I would suggest:&lt;/p&gt;
&lt;p&gt;A) Switch to a two-line view layout instead of the 4 line you have, since the description property is very small.&lt;/p&gt;
&lt;p&gt;B) Instead of using the &amp;quot;authors&amp;quot; property, which doesn't look very useful in this case, you should return properties like e-mail address, job title, department, etc.&lt;/p&gt;
&lt;p&gt;The guide I linked to above should explain how to achieve both of those. &amp;nbsp;If something is unclear please let me know how we can improve it :)&lt;/p&gt;
&lt;p&gt;Brandon&lt;/p&gt;
</description></item></channel></rss>