I want to build an advanced search inside a web application. To do that, I connect to a Sharepoint 2010 instance running FAST and use the query web service.
I've tried to retrieve the search metadata to be able to build drop-downs with all possible values for e.g. the author property using the getSearchMetadata call but I only get a listing of the properties, not all the values they can take.
<Properties diffgr:id="Properties5"
msdata:rowOrder="4" diffgr:hasChanges="inserted">
<Name>Author</Name>
<Description>author</Description>
<Type>System.String</Type>
<Retrievable>true</Retrievable>
<FullTextQueriable>true</FullTextQueriable>
</Properties>
How can I query for all possible values of a managed property?