I am trying to get the Interaction Events into my WDE (especially Event Ringing) custom module. Here is what I am doing:
In my WDE custom module registering for view events:
this.viewEventManager.Subscribe(WDEEventHandler);
and then on the Login event, registering for interaction event.
interactionManager.InteractionEvent += new EventHandler<EventArgs>(InteractionEventHandler);
I get the events as expected for one or more calls and then it stops. I searched through WDE logs and TServer logs and couldn’t find any trace to this issue.
Any idea what could be going wrong. Appreciate any help.