*/
private String invokeSyncQuery(XmlDbMessageWrapper wrap, int numResultRowsExpected, String token) {
try {
if (log.isLoggable(Level.FINE)) log.fine("Sending command string:\n" + wrap.toXml()); // Junit report does not like it
GetKey key = new GetKey(glob, "__sys__jdbc");
key.wrap(wrap.toXml());
GetQos qos = new GetQos(glob);
MsgUnit[] msgUnitArr = con.get(key.toXml(), qos.toXml());
if (msgUnitArr.length > 0) {
String result = new String(msgUnitArr[0].getContent());
if (log.isLoggable(Level.FINE)) log.fine(result);