Questions tagged [lync]

the server, client application & SDK designed for use with Microsoft Lync Server (or Office 365 Online) to provide Instant Messaging, audio/video, file and desktop sharing features to organisations.

Microsoft Lync (formerly Microsoft Office Communicator) and Microsoft Communicator for Mac are instant messaging clients used with Microsoft Lync Server or Lync Online available with Microsoft Office 365 and Live@Edu. They are replacements for Windows Messenger which was used with Microsoft Exchange Server.

Both Microsoft Lync and Microsoft Communicator for Mac are enterprise software, requiring connection to either an on-premise Lync Server instance, or a server instance in-cloud, such as Office 365.

The Lync client contains a contact list of contacts, along with their Presence status. Presence is automatically updated according to Outlook calendar activity, keyboard locking, making or receiving a AV call etc.

Lync supports a number of modalities, including IM, Audio, Video, Desktop Share, File Share. There is some low-level provision to extend this to add custom modalities.

A typical Lync installation will extend Outlook, Sharepoint and Dynamics CRM to presence-enable any Lync contacts displayed. Microsoft have also made available Silverlight/WPF controls to allow developers to Lync-enable custom applications easily.

Useful Links:

  1. Microsoft Lync landing page
  2. MSDN Lync landing page
  3. Lync 2013 SDK Documentation
  4. What is Microsoft Lync (a non-technical introduction)
  5. Wiki: Lync Server 2010 Features and How to Configure Them
570 questions
6
votes
2 answers

Get All Contacts using Lync ContactManager

Right now I'm using the the LyncClient.ContactManager.BeginSearch method to find contacts. However, I haven't been able to figure out how to get all the contacts. I've tried passing "*" and "%" as wild-card characters but that has not worked. …
skeletank
  • 2,880
  • 5
  • 43
  • 75
6
votes
4 answers

access Lync / Skype for Business conversation in C#

I'm facing a use case, where it shall be possible to take over a Lync/Skype for Business Conversation into my Software. The help desk user was contacted by a customer via Skype for Business and now needs to create a ticket from that conversation.…
MadMaxAPP
  • 1,035
  • 2
  • 16
  • 39
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
6
votes
1 answer

Can I use the Microsoft Lync API to communicate with Communicator 2007/2007 R2?

I'm coding IM Presence information into one of my companies silverlight applications. So far, the only solution I've found is one on CodePlex (Silverlight.OCS). It's "okay", but it's extremely dated. The Lync SDK makes it obnoxiously easy to get…
Chianti
  • 61
  • 4
5
votes
2 answers

Lync client state invalid

When using the Lync 2010 API the LyncClient can get in the Invalid state. This occurs if for instance the Lync process is shut down. When Lync is started again a call to Lync.GetClient() returns a Lync client reference in an Invalid state. Reading…
Nicklas Møller Jepsen
  • 1,248
  • 2
  • 16
  • 34
5
votes
1 answer

Getting a 502 Bad Gateway when trying to run a POST request for application on Lync UCWA on VPN

I am getting a 502 Bad Gateway when trying to run a POST request for application info on Lync UCWA ("Policy prevents request from being proxied."). When I do a request without SSL, I get a 403 - Forbidden: Access is denied. Is this becouse I am on…
Praise
  • 557
  • 2
  • 8
  • 23
5
votes
2 answers

Can Lync / UCWA be used to set the presence-information for an other user on the Lync platform?

We have a telephony platform, and we are looking to change the presence status of Lync users, based on events in the telephony platform. We would prefer to use the UCWA REST api, as we are familiar with REST api's and have most of the infrastructure…
TinkerTank
  • 5,685
  • 2
  • 32
  • 41
5
votes
4 answers

Lync - inconsistent behavior with ContactEndpoints

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, …
Maxim
  • 962
  • 2
  • 9
  • 21
5
votes
2 answers

How to create a custom Lync client within my business app without installing Microsoft Lync?

I would like to implement my own client for Microsoft Lync embedded within my business app. Is it possible to do so without having Lync installed?. I am targeting Lync SDK 2010. I have found the following information in the documentation and I was…
narko
  • 3,645
  • 1
  • 28
  • 33
5
votes
2 answers

Lync API: How to send instant message to contact by email address?

I have the email address of a Lync user and want to send him an instant message. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Lync.Model; using…
user479911
5
votes
1 answer

Is it possible to open a new Lync conversation from a webpage?

I would like to open a new conversation in a users Lync client, with a pre-determined message text but with the reciepients of the message to be selected by the user, with this process starting from the user clicking a link on a web site. Is that…
TZHX
  • 5,291
  • 15
  • 47
  • 56
4
votes
2 answers

Is it possible to disable the IE Lync add-on with a script

Our website has recently been hit by a new plugin pushed out to IE. The plugin is for Lync that detects phone numbers and adds a phone number link next to it. This is impacting our rich text editor implementation by adding the link to the data…
Scott
  • 131
  • 7
4
votes
3 answers

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

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 -…
4
votes
2 answers

lync extension development

Could anyone please send me some urls or code samples for develop extension for lync 2010. I mean development some tools which can integrated into lync 2010 as extension. add a menu or button to lync 2010, when click the menu or button, the…
Alexey
  • 464
  • 2
  • 9
  • 20
4
votes
1 answer

Using UCWA api and getting error when trying to connect through code C#

I am using UCWA api to create Lync Meeting URL but I am getting error in a step, and it is related to LYNC so trying to figure out how to resolve. My code is string url_00 = ucwaMsRtcOAuth; var authDic_00 = new Dictionary(); …
Chandikumar
  • 139
  • 11
1
2
3
37 38