subscriptionId = subToBrokerWithMsgBoxSink(msgBoxAddr, topic, xpath, wseClient, subscribePermananly);
messagePuller = msgboxHandler.startPullingEventsFromMsgBox(msgBoxAddr, this, 1500L, 30000l);
if (logger.isDebugEnabled())
logger.debug("\n\nCreate Subscription for topic" + topic + " [Messagebox]\n\n");
Subscription subscription = new Subscription(this, subscriptionId, topic, callback, this.brokerURL);
subscription.setMessageBoxEpr(msgBoxAddr);
subscription.setBrokerURL(this.brokerURL);
return subscription;
}