* @see org.apache.interop.smgr.ConnectionListener#onConnect()
*/
public void onConnect() {
// Start TCP Listener and A worker that will deliver received notifications
m_messageWorker = new MessageWorker(this,m_buffer);
m_listener = new NotificationListener(LISTENER_PORT,60000,m_buffer);
try {
m_messageWorker.start();
m_listener.start();
} catch (IOException e) {