<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Announcing: OpenSearch on ASP.NET made super easy with the OpenSearch Toolkit</title>
	<atom:link href="http://blog.tatham.oddie.com.au/2009/07/19/announcing-opensearch-on-asp-net-made-super-easy-with-the-opensearch-toolkit/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tatham.oddie.com.au/2009/07/19/announcing-opensearch-on-asp-net-made-super-easy-with-the-opensearch-toolkit/</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 06:37:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SR</title>
		<link>http://blog.tatham.oddie.com.au/2009/07/19/announcing-opensearch-on-asp-net-made-super-easy-with-the-opensearch-toolkit/#comment-16537</link>
		<dc:creator><![CDATA[SR]]></dc:creator>
		<pubDate>Thu, 16 Jun 2011 08:54:02 +0000</pubDate>
		<guid isPermaLink="false">http://tatham.wordpress.com/?p=364#comment-16537</guid>
		<description><![CDATA[Hi

I tried the sample and everything compiled.  However when I choose the search provider and enter a keyword and press the search, it tries to go to the Search.aspx Page???  What do I need to implement there?]]></description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I tried the sample and everything compiled.  However when I choose the search provider and enter a keyword and press the search, it tries to go to the Search.aspx Page???  What do I need to implement there?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://blog.tatham.oddie.com.au/2009/07/19/announcing-opensearch-on-asp-net-made-super-easy-with-the-opensearch-toolkit/#comment-14778</link>
		<dc:creator><![CDATA[john]]></dc:creator>
		<pubDate>Thu, 05 Aug 2010 17:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://tatham.wordpress.com/?p=364#comment-14778</guid>
		<description><![CDATA[Hi Tatham -

I fired up this project in VS2010 on IIS7 with the IIS6 Configuration migration option enabled and using your OpenSearchValidator project the service apparently isn&#039;t returning proper responses.  Have you given it a try on IIS7 or VS 2010?  Any suggestions would be appreciated.

Here is my GetResults method, I single stepped it so I know it is being invoked:

protected override IEnumerable GetResults(string searchTerm)
        {
            
            List results = new List();
            results.Add(new SearchResult() { Description = &quot;a&quot;, GroupTitle = &quot;b&quot;, ImageUri = new Uri(&quot;http://farm4.static.flickr.com/3068/2587076826_17fd16a7b8.jpg&quot;), Path = &quot;&quot;, Title = &quot;M&quot; });

            return results;
        }]]></description>
		<content:encoded><![CDATA[<p>Hi Tatham -</p>
<p>I fired up this project in VS2010 on IIS7 with the IIS6 Configuration migration option enabled and using your OpenSearchValidator project the service apparently isn&#8217;t returning proper responses.  Have you given it a try on IIS7 or VS 2010?  Any suggestions would be appreciated.</p>
<p>Here is my GetResults method, I single stepped it so I know it is being invoked:</p>
<p>protected override IEnumerable GetResults(string searchTerm)<br />
        {</p>
<p>            List results = new List();<br />
            results.Add(new SearchResult() { Description = &#8220;a&#8221;, GroupTitle = &#8220;b&#8221;, ImageUri = new Uri(&#8220;http://farm4.static.flickr.com/3068/2587076826_17fd16a7b8.jpg&#8221;), Path = &#8220;&#8221;, Title = &#8220;M&#8221; });</p>
<p>            return results;<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tatham Oddie</title>
		<link>http://blog.tatham.oddie.com.au/2009/07/19/announcing-opensearch-on-asp-net-made-super-easy-with-the-opensearch-toolkit/#comment-14213</link>
		<dc:creator><![CDATA[Tatham Oddie]]></dc:creator>
		<pubDate>Wed, 21 Oct 2009 21:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://tatham.wordpress.com/?p=364#comment-14213</guid>
		<description><![CDATA[Hi Alaa,

You should only need to do two things to support suggestions. Both changes are in your own handler.

1) return true from SupportsSuggestions
2) implement GetSuggestions

Also note that suggestions are only for Firefox. IE8 uses the results feed.

Thanks,

Tatham]]></description>
		<content:encoded><![CDATA[<p>Hi Alaa,</p>
<p>You should only need to do two things to support suggestions. Both changes are in your own handler.</p>
<p>1) return true from SupportsSuggestions<br />
2) implement GetSuggestions</p>
<p>Also note that suggestions are only for Firefox. IE8 uses the results feed.</p>
<p>Thanks,</p>
<p>Tatham</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alaa</title>
		<link>http://blog.tatham.oddie.com.au/2009/07/19/announcing-opensearch-on-asp-net-made-super-easy-with-the-opensearch-toolkit/#comment-14212</link>
		<dc:creator><![CDATA[Alaa]]></dc:creator>
		<pubDate>Wed, 21 Oct 2009 08:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://tatham.wordpress.com/?p=364#comment-14212</guid>
		<description><![CDATA[hi Tatham
how can i enable the suggestions?
i made modification , is it ok?
Results = SearchHelper.PerformSearch(SearchTerm);
if (Results.Count() == 0)
{
Suggestions = SearchHelper.GenerateSuggestions(SearchTerm);
}]]></description>
		<content:encoded><![CDATA[<p>hi Tatham<br />
how can i enable the suggestions?<br />
i made modification , is it ok?<br />
Results = SearchHelper.PerformSearch(SearchTerm);<br />
if (Results.Count() == 0)<br />
{<br />
Suggestions = SearchHelper.GenerateSuggestions(SearchTerm);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Want Open Search Integration in Your Website&#8230;? &#171; Ducas&#8217; World</title>
		<link>http://blog.tatham.oddie.com.au/2009/07/19/announcing-opensearch-on-asp-net-made-super-easy-with-the-opensearch-toolkit/#comment-14125</link>
		<dc:creator><![CDATA[Want Open Search Integration in Your Website&#8230;? &#171; Ducas&#8217; World]]></dc:creator>
		<pubDate>Wed, 05 Aug 2009 22:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://tatham.wordpress.com/?p=364#comment-14125</guid>
		<description><![CDATA[[...] at opensearchtoolkit.codeplex.com. Tatham has a great post on how to integrate it into your site on his blog… OpenSearch is a technology that already has widespread support across the web and is now getting [...]]]></description>
		<content:encoded><![CDATA[<p>[...] at opensearchtoolkit.codeplex.com. Tatham has a great post on how to integrate it into your site on his blog… OpenSearch is a technology that already has widespread support across the web and is now getting [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

