In SDK_DEMO_v2, CCustomizeInMeetingUIMgr::onUserJoin(..) doesn't callback

Description
In sdk_demo_v2 , I added some codes for getting room Id, password,…
After I run app in custom ui mode and make video meeting room.
When I try join meeting in original zoom app, and input room Id, password.
sdk_demo_v2 doesn’t callback “CCustomizeInMeetingUIMgr::onUserJoin()”
So I cannot see any accept/allow join message/dialog window in sdk_demo_v2.

Which version?
c++ SDK.
zoom-sdk-windows-master/version.txt - v5.2.41727.0928
Visual Studio 2019
Window SDK:10.0.18362.0
Build Tool: Visual Studio 2019 (v142)
UNICODE

To Reproduce(If applicable)

  1. start app with custom ui.
  2. input JWT string
  3. email login
  4. click video meeting button
  5. find out roomId, password,…(via my trace log)
  6. in other PC(Original Zoom App), input room Id, password.
  7. No reaction in sdk_demo_v2.

Screenshots
If applicable, add screenshots to help explain your problem.

Smartphone (please complete the following information):

  • Device: PC
  • OS: Windows 10
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

I SOLVED IT!
MUST use IMeetingWaitingRoomEvent interface.
And
Must call “m_pWaitingRoomCtrl->AdmitToMeeting(userID);”

AdmitToMeeting() is declared in IMeetingWaitingRoomController interface;

class IMeetingWaitingRoomController{

virtual SDKError AdmitToMeeting(unsigned int userid) = 0;

};

Hey @promaker.yoo

Thanks for using the dev forum!

Awesome! I am happy to hear you got it working :slight_smile:

Please let us know if you have any other questions.
Thanks!
Michael