Hi everyone,
does anyone have any experience with this event?
I´m currently trying to catch the moment just after a connection is made. This seems to be the right event fot that purpose. Does´nt work out too well, though.
The event just doesn´t seem to occur. Following is a code-snippet which should handle the event:
Application.addEventListener("ApplicationLoad", new EventListener() {
public void handleEvent(final Event event) {
if(event instanceof CMSAdapterConnectEvent){
System.out.println("Here we go");
}
}
},true);
Thanks for any clue in advance
Daniel