Hello
We are using the Web Service to search our content using a custom category with ID 1778136
Searching produces the expected result, however the returned result values does not bring back the specified category attribute value.
The code below is a copy of the code being used, but the Attr_1779136_4 does not get returned in the results but the search spec filters the results correctly.
string searchSpec = "where1=\"<Attr_1778136_4>\"range\"20120101~20120209\"&lookfor1=otstarts";
string[] transformationSpec = new string[] { "Attr_1778136_4", "OTName", "OTLocation" };
SearchService.SingleSearchRequest query = new SearchService.SingleSearchRequest();
query.DataCollectionSpec = "'" + dataCollection + "'";
query.QueryLanguage = "Livelink Search API V1";
query.FirstResultToRetrieve = 1;
query.NumResultsToRetrieve = 100;
query.ResultOrderSpec = "sortByRegion=OTCreatedBy";
query.ResultSetSpec = searchSpec;
query.ResultTransformationSpec = transformationSpec;
SearchService.SingleSearchResponse response = client.Search(SearchServiceToken, query, string.Empty);
Any pointers would be appreciated.