I am trying to develop an application which starts conversation between 2 random users within the company. We are using OCS 2007 R2.
I am creating this conversation via UCMA 2.0 with the below code, but I am not sure if there is a way to limit the created conversation duration with 3 minutes. So
- Is there any way to accomplish this task via UCMA 2.0?
- What is other options rather than cancelling the conversation via the same bot which creates this conversation in 3 minute?
- Is there any way to customize Conversation screen in Office Communicator? So I could show a counter which shows the left duration in conversation?(Like: 20 second left)
Thanks anyway.
UserEndpointSettings userEndpointSettings = new UserEndpointSettings(_userURI, _userServer);
userEndpointSettings.Credential = _credential;
_userEndpoint = new UserEndpoint(_collabPlatform, userEndpointSettings);
_userEndpoint.BeginEstablish(EndEndpointEstablish, _userEndpoint);
ConversationSettings convSettings = new ConversationSettings();
convSettings.Priority = _conversationPriority.Normal;
convSettings.Subject = "Your trip plan";
Conversation conversation = new Conversation(_userEndpoint, convSettings);