The following Ucam application code throws execption:The request failed with reason: mcuTypeNotAvailable
ConferenceScheduleInformation
scheduleInfo = newConferenceScheduleInformation();
scheduleInfo.AccessLevel =
ConferenceAccessLevel.Everyone;
scheduleInfo.AutomaticLeaderAssignment =
AutomaticLeaderAssignment.Disabled;
// Add the A/V and IM MCUs.
scheduleInfo.Mcus.Add(
newConferenceMcuInformation(McuType.AudioVideo));
//scheduleInfo.Mcus.Add(new ConferenceMcuInformation(McuType.InstantMessaging));
// Add the caller as a participant.
scheduleInfo.Participants.Add(
newConferenceParticipantInformation(call.RemoteEndpoint.Participant.Uri,ConferencingRole.Attendee));
// Set a subject for the conference.
scheduleInfo.Subject ="Call Controller Session";
call.Conversation.Endpoint.ConferenceServices.BeginScheduleConference(
scheduleInfo,
scheduleResult =>
{
try
{
call.Conversation.Endpoint.ConferenceServices.EndScheduleConference(scheduleResult);
}
catch(Exception e )
{
Log ( e );
}
Thanks for your help!