Why function onChatMsgNotifcation not be called back?

I have find out why.

All the test above is join the meeting which enable meeting waiting room. After I read the post(Zoom SDK with Custom UI support sdk_demo_v2 crashes in CreateVideoElement when element type is VideoRenderElement_ACTIVE) , I tried disable the meeting waiting room, then sdk_demo and sdk_demo_v2’s work well and onChatMsgNotifaction all be called back.

Then I find some status changed in IMeetingServiceEvent.onMeetingStatusChanged.
For the meeting which enable the waiting room

  1. Joint the meeting.
  2. In onMeetingStatusChanged: status=MEETING_STATUS_CONNECTING
  3. Host premit in
  4. In onMeetingStatusChanged: status=MEETING_STATUS_INMEETING
  5. In onMeetingStatusChanged: status=MEETING_STATUS_RECONNECTING
  6. In onMeetingStatusChanged: status=MEETING_STATUS_CONNECTING
  7. In onMeetingStatusChanged: status=MEETING_STATUS_INMEETING
    However for the meeting which distable the waiting room, step 3~7 is not exist.

So I try GetMeetingChatController() and setEvent again after step 7 when join meeting which enable waitting room, function OnChatMsgNotifaction work fine. By the way, The pointer to MeetingChatController object from GetMeetingChatController() no change when reconnect the meeting.

Thinks for the post’s author virupaksha.h