Questions tagged [lync-client-sdk]

Questions about the managed-code (.NET) client-side APIs for managing and extending Microsoft's Unified Communications Lync Client and the UI controls for adding Lync features to Windows Presentation Foundation (WPF) and Silverlight applications.

134 questions
11
votes
1 answer

Can I forward keyboard shortcuts to a lync conversation window docked in a WPF window

I am working with Lync 2013 SDK and WPF in a way to add a toolbar to the Lync conversation window. I did dock the Lync conversation window in a panel inside a WindowFormHost pretty much following this tutorial…
user1098580
  • 409
  • 4
  • 9
7
votes
2 answers

Lync NotInitializedException uncatchable on windows 8

I use lync Sdk to dock Lync conversation within my own wfp application. The problem is that when I try to dock the conversation like this: public void Dock(Conversation conversation, IntPtr host) { try { ConversationWindow window =…
user1098580
  • 409
  • 4
  • 9
6
votes
2 answers

Unable to get available audio device from Lync 2013 sdk

When I try to get the list of available audio devices like this. LyncClient client = LyncClient.GetClient(); foreach (Device dev in client.DeviceManager.AudioDevices) { //Do something } I get the error Exception has been thrown by the target…
user1098580
  • 409
  • 4
  • 9
5
votes
2 answers

Develop with Lync 2013 SDK on Visual Studio 2015 Community?

Does VS2015 have any restriction regarding developing Skype for business (Lync 2013 SDK) applications? When I try to install the Lync 2013 SDK I get an error saying "Microsoft Visual Studio 2010 SP1 or higher not found." Do I need a Enterprise…
4
votes
1 answer

Installing Lync 2013 sdk client side on visual studio 2015

I am trying to install the Lync 2013 SDK on Visual studio 2015, but I get an error saying "MSVS2010 SP1 or higher not found. Go here to download and install" I've looked up the issue on the web, and the closest thing to a solution is installing a…
petterg
  • 41
  • 3
3
votes
1 answer

UCMA vs UCWA - User vs Application Endpoint

I need to develop a chatbot with these properties: Platform - Skype for Business On-Premise Function - Replies to user queries by looking in various knowledgebases (Multiple Platforms - Databases, Web APIs, etc.) Basic textual conversation to begin…
3
votes
0 answers

A chat bot to integrate to Microsoft Lync 2010/2013

I have created a chatbot in c# using .net 4.5. The chat bot accesses multiple other applications in the background and returns the output to the user. The chat bot was initially planned to be a standalone application but the requirement has changed…
KChow
  • 317
  • 3
  • 15
3
votes
1 answer

How to detect file transfer in Lync conversation

I am trying to log my Lync convrsation using a console application which uses Lync SDK to access Lync client. My code looks similar to this: public void GetNotifiedAboutMessageSent() { var client = LyncClient.GetClient(); …
3
votes
1 answer

Contact presence/status on Lync 2013 SDK shows "Presence unknown" until manual client search

I'm working on an automation service for lync that will automatically add people to an IM conversation based on their availability/lync "presence". It essentially goes down a list, checks who is online, and adds the first person to a call. The…
ChrisG
  • 1,403
  • 13
  • 22
3
votes
1 answer

Integration with Lync 2010 and 2013 via SDK

I'm working on a small WPF application which changes the user's availability and status message in Lync. I'm currently using the Lync 2010 SDK, but I'd like the app to support both 2010 and 2013 versions. What's the best way to support both…
Colin O'Dell
  • 8,386
  • 8
  • 38
  • 75
3
votes
3 answers

Recording conversation using Lync SDK 2013 in UI suppression mode

I know i can save my conversation from the Lync Client (see this link), But can i save it from Lync SDK i am looking for method that simulate the Start Recording button in Lync client i am looking for something like this…
Anas
  • 711
  • 7
  • 24
3
votes
2 answers

How to make external emoticons on Lync

I want to make external emoticons(I got images, like jpeg, png, whatever I want to import), and I want to import to Microsoft Lync application. I heard that there is a Lync SDK for developing Lync application, but I don't know it can be used what…
JunoJunho
  • 75
  • 1
  • 1
  • 8
3
votes
1 answer

Where in the Microsoft Lync API can I set an event handler for incoming IMs?

I'm setting a handler for the InstantMessageReceived event, but it only seems to fire on outgoing text messages, not incoming. Here is the code I'm running: # Register the app with Growl $icon =…
John O
  • 4,863
  • 8
  • 45
  • 78
2
votes
1 answer

Proper way to end meeting for all participants in Skype for Business using Lync SDK

I’m trying to implement a function for ending the current conversation for all participants using Microsoft Lync SDK for Skype for business. The job it’s supposed to be done like this: conversation.End(); But it only closes the window of the…
2
votes
2 answers

How to get client's contact details in lync sdk c#

Which Object has the client contact information like office,company,IM, etc,. in Lync SDK 2013? I want to know the user's(client's) location/address information.
1
2 3
8 9