Reputation: 51
I am trying to run 'Join meeting sample' in Lync SDK 2013. Below code in the sample throws an exception "Value does not fall within the expected range.".
string conferenceUrl = MeetUrl.Text; // in the form of "conf:sip:[email protected];gruu;opaque=app:conf:focus:id:4FNRHN16";
IAsyncResult ar = Automation.BeginStartConversation(conferenceUrl, 0, StartConversation_Callback, null);
I am passing ConferenceUrl in the format "conf:sip:[email protected];gruu;opaque=app:conf:focus:id:4FNRHN16". It keeps throwing the same error. Am i missing something.
Upvotes: 2
Views: 377
Reputation: 31
It is a bug in the SDK
. If you add an "?"
at the end of the conference uri
, your code will work.
conf:sip:[email protected];gruu;opaque=app:conf:focus:id:HELLOWORLD?
Upvotes: 3