11-14-2006 07:54 AM
11-15-2006 05:39 AM
SearchParameters sp = new SearchParameters();
sp.addStore(getStoreRef());
sp.setLanguage(SearchService.LANGUAGE_LUCENE);
sp.setQuery("PATH:\"//.\"");
sp.addSort("ID", true);
ResultSet results = null;
try
{
results = serviceRegistry.getSearchService().query(sp);
for(ResultSetRow row : results)
{
NodeRef currentNodeRef = row.getNodeRef();
…
}
}
finally
{
if(results != null)
{
results.close();
}
}
11-15-2006 08:38 AM
query=new Query(Constants.QUERY_LANG_LUCENE, PATH:\"/app:company_home/cm:"+spacename+"//*\ AND (TEXT:" word ")));
QueryResult queryResult = repositoryService.query(STORE, query, false);
11-15-2006 09:39 AM
02-13-2007 08:10 AM
Hi,
I dont believe that you can currently pass search parameters using the current web service API.
I would have thought you would have to resolve the parameter values on the client before sending the query to the web service API.
Perhaps this is a feature we should add thou. Could you add this as a Jira task. That way you'll be able to track its progress and we'll be able to prioritise it effectively.
Cheers,
Roy
04-05-2007 03:34 PM
04-05-2007 04:30 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.