简体   繁体   中英

UCMA 2.0: Resume a Terminated InstantMessagingCall

Say I have a user on OCS who represents my application endpoint, and I try to message them from a web application locally (I built on top of the BasicIMCall sample application), and at some point they close the chat window, how do I resume the InstantMessagingCall? I have looked all over the web for the answer but I can't figure it out. Once the user closes the window, the call state becomes Terminated. How do I recover the call along with its call history and continue or restart the terminated conversation?

If they closed the chat with you will will receive a event state that tells you the state is terminated. Its up to you want to do at that point.

If you want to talk to him again you would need to BeginEstablish the InstantMessagingCall again. Then he would need to accept on his side for you to chat again.

Register Call State Change event for Incoming IM Call:

call.StateChanged +=new EventHandler<CallStateChangedEventArgs>(call_StateChanged);

Further you can get state of call and when it terminates , you can initiate new call:

protected void call_StateChanged(object sender, CallStateChangedEventArgs e)
        {

              if (e.State == CallState.Terminated)
                {
                     //Initiate new call again
                }

         }

To recover call history, i think you have to store transcript of previous conversation.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM