ucma

UCMA Steps to create Trusted Application

℡╲_俬逩灬. 提交于 2019-12-08 01:08:47
问题 What are the steps to create a trusted server application and then deploying it on the lync server? I am new to lync server application development. 回答1: Finally got thorught the problem, This can be helpful. But in simple terms, Step 1 : Create an Applicationpool by using Powershell Cmd New-CsTrustedApplicationPool <>Syntax: New-CsTrustedApplicationPool -Identity -Registrar -Site -ComputerFqdn -RequiresReplication -Identity : this should be unique like MyApplicationPool.mycomputer.fqdn

Error SIPEPS, Version=5.0.0.0 UCMA 4.0 VS2010/VS2013

牧云@^-^@ 提交于 2019-12-05 05:51:15
I had developed an UCMA 4.0 application on both VS 2013 and VS 2010. When run project, I got this error: Could not load file or assembly 'SIPEPS, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. I used .NET 4 and had set target build platform to x64 . Checked by dependwalker_x64 and no file is missing. I also used the App.config file from Sample but not work so I had changed the App.config file as follow: <runtime> <assemblyBinding> <dependentAssembly> <assemblyIdentity name="SIPEPS" publicKeyToken=

Lync UCMA SDK Server - Globally subscribe to presence updates for all Presentities

不问归期 提交于 2019-12-04 18:12:10
Is it possible to globally catch ALL presence changes from Lync server without subscribing to all presentities individually? What we're after seems to be very similar to the RemotePresenceView class in the UCMA SDK but that class only allows you to subscribe to presentities that you know about. Would we need to load all presentities and then subscribe to them - and even if you could is this a scalable solution? Just notice your question and although it's getting a little old, thought I'd answer it just in case. There's nothing in UCMA that I know of but perhaps there is a repository of SIPs

Should I use UCWA or UCMA or another API for a Skype for Business Server Application?

巧了我就是萌 提交于 2019-12-03 19:17:22
问题 There seems to be a lot of different SDKs / APIs around Skype for Business. I'm having a tough time deciphering which one would be appropriate for a server side Bot like application that could communicate domain specific information to the users within the organization. For example we'd like to be able to deliver task(s) via messages and perform presence based task assignment. This seems to be fairly low hanging fruit but where's the REST endpoints and documentation to make this happen.

How to monitor all lync users instant message via C# console application?

我怕爱的太早我们不能终老 提交于 2019-12-02 18:39:58
问题 I have created UCMA trusted application using C# console application. I want to monitor all Lync Users instant messaging calls (in one place) as well as store their conversations in the database via this console application. Is it possible?. If possible, please give an idea or any url. 回答1: UCMA trusted applications will only respond to traffic to the endpoints associated with that application so if you want to monitor all instant message traffic it would be the wrong API. I would suggest

Retrieve call forwarding rules of a Lync client with server-side technologies (UCMA or MSPL)

北城以北 提交于 2019-12-02 04:26:50
问题 How can I retrieve the call forwarding rules (routing) of a Lync client in a Managed SIP Application (serverside technologies like MSPL or UCMA)? The only thing I found is an Article on how you can do it clientside with the Lync SDK. Also this Answer and this MSDN Article and this Question seem to indicate that it does work but I need this setting at a specific moment (if the User is online or not) and not as soon as he logs into his Lync account and publishes his presence info, as seen in

Retrieve call forwarding rules of a Lync client with server-side technologies (UCMA or MSPL)

感情迁移 提交于 2019-12-02 00:28:50
How can I retrieve the call forwarding rules (routing) of a Lync client in a Managed SIP Application (serverside technologies like MSPL or UCMA)? The only thing I found is an Article on how you can do it clientside with the Lync SDK. Also this Answer and this MSDN Article and this Question seem to indicate that it does work but I need this setting at a specific moment (if the User is online or not) and not as soon as he logs into his Lync account and publishes his presence info, as seen in link #1. Also it is necessary to get this for any client without creating an UserEndpoint first. So it

Should I use UCWA or UCMA or another API for a Skype for Business Server Application?

限于喜欢 提交于 2019-11-30 11:15:06
There seems to be a lot of different SDKs / APIs around Skype for Business. I'm having a tough time deciphering which one would be appropriate for a server side Bot like application that could communicate domain specific information to the users within the organization. For example we'd like to be able to deliver task(s) via messages and perform presence based task assignment. This seems to be fairly low hanging fruit but where's the REST endpoints and documentation to make this happen. Assuming for example I wanted to create a little console application that could facilitate this what API