wrap.init(type, limit, confirm, queryStr);
try {
log.info("Sending command string:\n" + wrap.toXml());
GetKey key = new GetKey(glob, "__sys__jdbc");
key.wrap(wrap.toXml());
GetQos qos = new GetQos(glob);
// get() blocks until the query is finished ...
MsgUnit[] msgUnitArr = corbaConnection.get(key.toXml(), qos.toXml());
if (msgUnitArr.length > 0)
System.out.println(new String(msgUnitArr[0].getContent()));