// Add Vinci Command, so that the receiving service knows what to do
queryFrame.fadd("vinci:COMMAND", Constants.IS_STATELESS);
// make RPC call
VinciFrame resultFrame = mVinciClient.rpc(queryFrame);
boolean result = resultFrame.fgetBoolean("Result");
return result;
} catch (Exception e) {
throw new ResourceServiceException(e);
}
}