Hi OMERO Team,
I’m new to OMERO, and am trying to simply hit the server with a query example
IQueryPrx q = sf.getQueryService();
String query_string = “select i.id from Image i where i.id = :id and name like :namedParameter”;
ParametersI p = new ParametersI();
p.add(“id”, rlong(1L));
p.add(“namedParameter”, rstring("%art223%"))
List results = q.findAllByQuery(query_string, p);
If there is no result, there is not a problem, but if a result comes back, I get
unknown = “…/…/include/Ice/BasicStream.h:307: Ice::EncapsulationException: protocol error: illegal encapsulation”
It seems I missed something in setting up my client. Any thoughts or “getting Started” links would be appreciated.
Thanks