I have an application where I create a scheduled conference on startup, and using that conference as a waiting-room. When creating the conference, it's generating a ConferenceID.
If my app crash on an unhandled error, then this ID is lost, and right now I can't seems to find any other methods to delete previously created scheduled conference???
Is there anyway that you can make your application check for previously scheduled conference created by this trusted application, and remove/delete them??
In my dev test I reach a ".. Maximum number of scheduled conference per user reached!" exception, which for me seems to be cuz there is some previously scheduled conference hanging.
Ofc, if I shutdown my app correctly, I'm using ConferenceServices.BeginCancelConference() together with shutting all other UCMA resources down correctly. This issue I'm writing about, is in case that my app crash without doing this shutdown sequence.