Welcome there !
Emmanuel Desigaud's blog. Personnal, professional. Fun pictures, kewl web links, usefull software ....2007-06-23
MOSS 2007 Search Web Service Tips
Categories: CMS / Sharepoint Language :
The "Did you mean" (spelling suggestion) feature of MOSS 2007 is very useful. This information is also available through the Search Web Service.
On the dataset returned by the QueryEx function, have a look at the extended property called SpellingSuggestion. It will give you the precious information !!
DataSet ds = queryServiceProxy.QueryEx(req);
if (ds.ExtendedProperties.ContainsKey("SpellingSuggestion")
&&
ds.ExtendedProperties["SpellingSuggestion"].ToString().Length > 0)
{
this.Response.Write("-->" + ds.ExtendedProperties["SpellingSuggestion"]);
}
if (ds.ExtendedProperties.ContainsKey("SpellingSuggestion")
&&
ds.ExtendedProperties["SpellingSuggestion"].ToString().Length > 0)
{
this.Response.Write("-->" + ds.ExtendedProperties["SpellingSuggestion"]);
}