I'm copying Francisco Gonzalezo's post from here:
https://knowledge.opentext.com/knowledge/llisapi.dll/open/16183975
I'm finding quite a similar problem when using a differente service: SearchService. After executing a call, similar to this:
SingleSearchRequest queries = new SingleSearchRequest();
//populate request
queries.setQueryLanguage("Livelink Search API V1");
queries.setDataCollectionSpec("\"LES S.I.P.\"");
queries.setFirstResultToRetrieve(1);
queries.setNumResultsToRetrieve(10);
queries.setResultSetSpec("where1=blabla");
//call
SingleSearchResponse response = searchService.search(queries, "");
I receive the following error code:
Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Error loading SingleSearchResponse.Results
Which seems pretty similar. Any idea about how to resolve it?