cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X

CMSAdapterConnectEvent

dthursfield
1-Newbie

CMSAdapterConnectEvent

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

1 ACCEPTED SOLUTION

Accepted Solutions

On the AOM side, the adapter connect-related events are undocumented. We are working on documentation for them. The event names are

cmsadapterpreconnect, cmssessionpredisconnect, cmsadapterpostdisconnect

View solution in original post

1 REPLY 1

On the AOM side, the adapter connect-related events are undocumented. We are working on documentation for them. The event names are

cmsadapterpreconnect, cmssessionpredisconnect, cmsadapterpostdisconnect

Top Tags