* @throws IOException
*/
protected ResponseContainer queryAndVerifySingle(Command request) throws IOException {
RequestMessage msg = new RequestMessage();
msg.append(request);
ResponseMessage resp = queryAndVerify(msg);
return resp.responses().iterator().next();
}