lync

Creating a conference with only one user via Lync api - Meet Now

三世轮回 提交于 2019-12-22 08:24:42
问题 I have been trying to build an application in the Lync sdk. What I want is to simulate a conference room environment where - the first user that comes in initiates a conference and puts the conference uri on the server for subsequent users to join - basically essentially the same functionality that the MEET NOW option of MS's Lync client exposes. However, what i have found out is that both the methods - beginstartconversation() in _Automation class and _LyncClient.ConversationManager

Skype for Business Web SDK samples not working

我只是一个虾纸丫 提交于 2019-12-17 22:02:02
问题 I have downloaded the Skype Web SDK samples from here, but I can't make them work. I have registered a trial Office 365 account ( dotnetsolutionsdemos.onmicrosoft.com ) and I have a user there ( adam@dotnetsolutionsdemos.onmicrosoft.com ). If I run the desktop version of Skype for Business then I can log in with my account so it seems that the Lync service does work. I have installed the Skype for Business Web App Plug-in, put the sample code under IIS and opened it via a browser. Then I

UCWA Lync authentication - 500 web ticket is invalid

夙愿已清 提交于 2019-12-14 03:59:41
问题 I'm trying to create a simple client for Lync using Nodejs. Base on http://ucwa.lync.com/documentation/KeyTasks-CreateApplication I've made someting like this. It works until last step #9 when I should register my app with UCWA. Server responds with code 500 and silly explanation There is a problem with the resource you are looking for, and it cannot be displayed And headers x-ms-diagnostics': '28032;source="mysource";reason="The web ticket is invalid."' var http = require('request-promise');

Lync API - CaptureVideoWindow and RenderVideoWindow are Null

。_饼干妹妹 提交于 2019-12-13 15:30:29
问题 I have downloaded the SDK for Lync 2013 and am having a problem with the code sample found in AudioVideoConversation.csproj . This project is supposed to demonstrate the use of Audio/Video conversations through the Lync API. I am having trouble getting the video portion to function in the sample application. The problem is in this method: /// <summary> /// Called when the video state changes. /// /// Will show Incoming/Outgoing video based on the channel state. /// </summary> void

Lync notification of offline people using VBA

南笙酒味 提交于 2019-12-12 12:12:24
问题 I am having a VBA, Added to my outlook, which sends message over Lync. The Script is as given below. Sub sendIM(toUsers As Variant, message As String) Dim msgr As CommunicatorAPI.IMessengerConversationWndAdvanced 'Open messenger window and send message!!!!! Set msgr = messenger.InstantMessage(toUsers) msgr.SendText (message) Set msgr = Nothing It works fine. If there are 10 users, in the toUsers variable, then it sends the message to all as a "Group". What i want is, if there is a user who is

UCMA: Chat with users not in AD

余生颓废 提交于 2019-12-12 10:25:59
问题 a customer wants enable a chat/instant messenger for his application webside. He is using Lync Server internally to Chat in-house. Now, he requires the following: A external user (which will not be an AD user) logs into the webside is able to chat with a person inside the company. The internal user will receive those messages via his lync client. What's the best way to achieve this? i thought about bot that delegates messages from the webside to the lync server that does the rest. But how can

Setting up development environment for UCMA Application

最后都变了- 提交于 2019-12-12 03:58:42
问题 I have to create a Lync bot using UCMA. I have been facing a lot of challenges in just setting up a development environment, forget the actual coding. Before I put my question, I want to be clear that I am not a server/admin guy and my expertise lies on the programming and development side more than servers. But, I have been tasked to setup all the servers for the Lync bot development process and finally develop and test the same. After a lot of research and big help from some members of this

How to setup a development environment for UCMA Lync bot?

有些话、适合烂在心里 提交于 2019-12-12 03:58:19
问题 I have to create a Lync 2010 bot. The initial idea that I pitched for the development purposes was to create the application on my own laptop and add the application as a trusted application endpoint to the production lync server. In that way I can develop and test the bot on my machine. But, this idea was not highly encouraged by Microsoft themselves and they recommended to create a development lab environment to develop the application. I have done my fair share of research and have come to

Exception calling “BeginSendMessage” with “3” argument(s): “Value does not fall within the expected range.”

懵懂的女人 提交于 2019-12-12 03:52:37
问题 I am attempting to execute a script for single contact IM (via Microsoft Lync), and have successfully ran the script all the way down to the last line: $null = $m.BeginSendMessage($d, $null, $d) Note: $d = New-Object "System.Collections.Generic.Dictionary [Microsoft.Lync.Model.Conversation.InstantMessageContentType, String]" $d.Add($PlainText, "This is a test.") Below is the exception Psh is throwing upon execution of this syntax. It appears to fail at initiation of the $null variable.

UCWA: integrating advanced chat options

蓝咒 提交于 2019-12-12 01:47:00
问题 I have created a simple chatting application using which two users can chat with each other. Currently i'm able to send only simple and plain text messages. Next as an enhancement, i would like to send formatted text messages. Eg. Changing the font, text style, size, bold, italics, etc. Also i would like to integrate file sharing while chatting. So i would like to know: If ucwa Api has a provision for sending and receiving formatted text messages? Is there a provision to share files as well.