System.setProperty("protocol", "SOCKET");
System.setProperty("protocol/socket/hostname", "192.168.110.10");
*/
DbWatcher pc = new DbWatcher(info);
XmlBlasterPublisher mom = (XmlBlasterPublisher)pc.getMom();
mom.subscribe("XPATH://key", new I_Update() {
public void update(String topic, java.io.InputStream is, Map attrMap) {
log.info("Received '" + topic + "' from MoM");
try {
writeToFile(topic, new String(TestUtils.getContent(is)));
}