ConferenceScheduleInformation

ConferenceScheduleInformation

本文介绍了使用BeginScheduleConference创建会议的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 您好,我有一个协作平台和一个userendpoint。然后我需要自动创建会议。 ConferenceScheduleInformation conferenceScheduleInformation = new ConferenceScheduleInformation(); conferenceScheduleInformation.AdmissionPolicy = ConferenceAdmissionPolicy.Anonymous; conferenceScheduleInformation.IsPasscodeOptional = true; conferenceScheduleInformation.Passcode =" 123456789" ;; conferenceScheduleInformation.Description ="有趣的描述" ;; conferenceScheduleInformation.ExpiryTime = System.DateTime.Now.AddHours(5); UserEndpoint.ConferenceServices.BeginScheduleConference(ConferenceScheduleInformation,EndScheduleConference,UserEndpoint.ConferenceServices); 会议创建没有任何错误。但是当我尝试使用Live Meeting 2007加入它时位置:= ConferenceURI = sip:[email protected]; gruu; opaque = app:conf:focus:id:9R0V4MQ41VSOT12IZBY90AQ1YS8254A6和密码= 123456789 LM2007给我的以下错误: Live Meeting无法连接到会议,请稍等片刻再尝试加入会议。 帮助? 谢谢Hello, i have a collaboration plataform and a userendpoint. Then i need to create a conference automatically. ConferenceScheduleInformation conferenceScheduleInformation = new ConferenceScheduleInformation();             conferenceScheduleInformation.AdmissionPolicy = ConferenceAdmissionPolicy.Anonymous;             conferenceScheduleInformation.IsPasscodeOptional = true;             conferenceScheduleInformation.Passcode = "123456789";             conferenceScheduleInformation.Description = "Interesting Description";             conferenceScheduleInformation.ExpiryTime = System.DateTime.Now.AddHours(5); UserEndpoint.ConferenceServices.BeginScheduleConference(ConferenceScheduleInformation, EndScheduleConference, UserEndpoint.ConferenceServices); The conference is created without any errors. But when i try to join it using Live Meeting 2007 with Location: = ConferenceURI = sip:[email protected];gruu;opaque=app:conf:focus:id:9R0V4MQ41VSOT12IZBY90AQ1YS8254A6 and the passcode = 123456789 the LM2007 give me the following error: Live Meeting cannot connect to the meeting, wait a few moments and then try to join the meeting again. Help? Thank you推荐答案 这篇关于使用BeginScheduleConference创建会议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-23 04:19