lync

Lync Database - Mobile vs PC users

别等时光非礼了梦想. 提交于 2019-12-11 01:24:32
问题 G'day all, I'm looking to find out how Microsoft distinguishes between mobile and non-mobile subscribers/users in Lync's database (not SDK or API!), would anyone be able to suggest a direction to look at? Thanks! 回答1: Check out the table 'rtcdyn' in the Pool Configuration Store. Here is blog post that describes it in more detail. If I find anything else I'll append it to my answer. http://blog.insidelync.com/2011/04/the-lync-server-databases/ 来源: https://stackoverflow.com/questions/11406831

Do the UCWA or UCMA APIs support Skype for Business Online?

一世执手 提交于 2019-12-10 18:23:54
问题 We are trying to figure out whether the latest UCWA or UCMA supports Skype for Business Online. After a long search, I saw someone posted in March/April 2015 and said that UCMA/UCWA did not yet support it. But then, I could not find anything about this. Is the latest version able to support it? Where can I find any information about this? 回答1: UCWA is now available for Skype for Business Online. The steps to get your UCWA application registered and authenticated are quite different to using

Lync - inconsistent behavior with ContactEndpoints

隐身守侯 提交于 2019-12-10 13:55:57
问题 I'm working on custom UI for company's directory based on Lync. Using Lync 2013 I execute this search: Container.Instance.Lync.ContactManager.BeginSearch(SearchQuery, SearchProviders.GlobalAddressList, SearchFields.AllFields, SearchOptions.IncludeContactsWithoutSipOrTelUri, 500, ContactsAndGroupsCallback, SearchQuery); For each of matching contacts I try to access their endpoints to display phone number: var cit = ContactInformationType.ContactEndpoints; var endpoints = contact

Detecting an incoming call in Lync

♀尐吖头ヾ 提交于 2019-12-10 13:43:41
问题 I'm trying to detect an incoming call in the Lync client . This is done by subscribing to ConversationManager.ConversationAdded event in the Lync client as described in this post However, by using this method I'm not able to detect incoming calls if a conversation window with the caller is already open before the caller is calling. For instance if I'm chatting with a friend and therefore have a open conversation windows and this friend decides to call me, the ConversationAdded event is not

Which Lync SDK? Send IMs from managed code

╄→尐↘猪︶ㄣ 提交于 2019-12-10 10:55:19
问题 I have a server application which - in the rare event of an unexpected error - should send an instant message to a lync user (endpoint). From what I read I cannot use the Lync Client SDK as it relies on a running Lync client on the application server. This is however not possible. UCWA seems to be a fair choise but I don't really want to start writing my own Lync API, hiding all the HttpClient chatter in a managed code wrapper. What's my best option for this simple use case here? 回答1: I would

How to retrieve IM message from lync client 2013 communication

核能气质少年 提交于 2019-12-07 23:46:38
问题 I am using lync 2013 sdk and i need to create a task with conversation IM message on the end of call. I want some method as - conversation.getIMmessage() etc. how can i implement that. 回答1: So assuming you are using the Lync Client SDK you are going to need to add an event handler for IM received to the IM modality of each participant in a conversation. This is best considered in reverse order:- Set up an event handler for participant being added to a conversation:- Conversation

How can I read a Lync conversation file containing HTML?

故事扮演 提交于 2019-12-07 07:49:12
问题 I'm having trouble reading a local file, into a string, in c#. Here's what I came up with till now: string file = @"C:\script_test\{5461EC8C-89E6-40D1-8525-774340083829}.html"; using (StreamReader reader = new StreamReader(file)) { string line = ""; while ((line = reader.ReadLine()) != null) { textBox1.Text += line.ToString(); } } And it's the only solution that seems to work. I've tried some other suggested methods for reading a file, such as: string file = @"C:\script_test\{5461EC8C-89E6

Lync: VideoWindows of AVModality.VideoChannel are null after successfully calling BeginStart (COMException HRESULT: 0x80029C4A TYPE_E_CANTLOADLIBRARY)

有些话、适合烂在心里 提交于 2019-12-06 14:44:33
We are currently trying to incorporate Lync communication (Lync SDK 2010) into our application and we have run into an issue with the VideoWindows ( CaptureVideoWindow , RenderVideoWindow ) of the AVModality 's VideoChannel : They are always null, even after successfully calling BeginStart . The connection is definitely established. We can talk. Our own video is shown in a remote Lync client. AVModalityState is Connected . VideoChannelState goes from Connecting to Receive to Send . It does not matter when and how we try to access them: Directly after BeginStart , in the AsyncCallback of

Which Lync SDK? Send IMs from managed code

寵の児 提交于 2019-12-06 13:17:45
I have a server application which - in the rare event of an unexpected error - should send an instant message to a lync user (endpoint). From what I read I cannot use the Lync Client SDK as it relies on a running Lync client on the application server. This is however not possible. UCWA seems to be a fair choise but I don't really want to start writing my own Lync API, hiding all the HttpClient chatter in a managed code wrapper. What's my best option for this simple use case here? I would recommend using UCMA - the Unified Communications Managed API. If it's a one-off Instant Message you're

Microsoft Lync video streaming to webbrowser

◇◆丶佛笑我妖孽 提交于 2019-12-06 12:42:45
is it possible to stream (previously recorded and/or live) video to many Microsoft Lync SDK webbrowser clients? Thanks in advance, Etam. The short answer is No - not without some pain. The long answer depends on your exact scenario. If you can control the client build, and are able to ensure Lync is installed, then you should be able to automate Lync from the Silverlight app to connect to the conference that is hosting the video content you want to display. With this solution, it will be Lync that's actually displaying the video, not Silverlight. That's pretty simple, and covered in the Lync