I'm currently trying to get the searchservice to work, but i'm having some problems understanding what to supply and what the different data is. For instance, what is a slice? I'm loged on as an administrator, but i keep getting the message "The slice is not accessible". I've found a query in the "Search API programming Guide" which is ?func=search.getslices. I was hoping to use this in order to retrieve the available slices for the current user. The query i specified was: ?func=search.getslices&userlogin=admin
I've also tried the following request:
SingleSearchRequest request = new SingleSearchRequest();
request.DataCollectionSpec = "\"Help\"";
request.FirstResultToRetrieve = 1;
request.NumResultsToRetrieve = 10;
request.QueryLanguage = "Livelink Search API V1";
request.ResultOrderSpec = "where1=enterprise+web+services";
return request;
Anyone who can point me in the right direction?