Hi Edna,
Are the meeting place events being created through your app or through the GUI?
Thanks,
Adrienne
Hi Adrienne,
I am subscribing to events on a meetingPlace node using the following
ArrayOfShortEventTypeEnum eventTypes = enObjFactory.createArrayOfShortEventTypeEnum();
eventTypes.getShortEventTypeEnum().add(ShortEventTypeEnum.USR_JOIN);
eventTypes.getShortEventTypeEnum().add(ShortEventTypeEnum.USR_LEAVE);
SubscriptionInfo response = eventService.subscribeForAllResources(ResourceTypeEnum.USER_BASED, eventTypes, callbackInfo, expirationCalendarXML);
When an end user then either dials into a WebEx meeting or accepts a callback from the meeting the USR_JOIN event is raised by meetingPlace and sent to the URL specified in the callbackInfo object.
However the usrUID=3 for every user, Any ideas of what the issue is?
Thanks,
Enda