The SuggestionsURL setting specifies the URL where suggestions can be retrieved by using a search based on XML.

Note
To specify search suggestions by using a search based on JavaScript Object Notation (JSON), use the SuggestionsURL_JSON setting instead.

For information on creating Search Scopes, see Search Provider Extensibility.

Values

URL

Specifies the URL where search suggestions can be retrieved by using a search based on XML.

URL is a string.

Valid Configuration Passes

specialize

Parent Hierarchy

Applies To

For a list of the supported Windows® editions and architectures that this component supports, see Microsoft-Windows-IE-InternetExplorer.

XML Example

The following XML output shows how to specify a URL to provide search suggestions by using a search based on XML.

  Copy Code
<SearchScopes>
   <Scope wcm:action="add">
	<ScopeDisplayName>MySecondSearchProvider</ScopeDisplayName>
	<ScopeKey>SearchProvider2</ScopeKey>
	<ScopeUrl>http://search.fabrikam.com/results.aspx?q=&quot;{searchTerms}&quot;</ScopeUrl>
	<SuggestionsURL>http://suggestions.fabrikam.com/qsml.aspx?query={searchTerms}</SuggestionsURL>
   </Scope>
</SearchScopes>

See Also