Specify a plug-in for the Office Communicator client?

Can I code a plug-in for the Office Communicator client?

I have seen code that allows me to create my own client, but I just want to add functionality to an existing client. It can be done?

The plugin I want to create will search for a string and if found, replace the link for it.

For example:

Go and find Question32

Will be changed to:

Go and find Question32

Could such a setting be coded into an existing client? If so, does anyone have any conclusions on how to do this (Visual Studio C # preferred)?

EDIT: I'm also willing to go with a separate app than just control the incoming text. Is there a way to do this?

+2


source to share


1 answer


You can code a plugin using the Office Communicator Automation API, but what you are requesting cannot be accomplished using this API.



The best practice here is to develop an OCS Server application using the Office Communications Server SDK . This application can be written in C # and installed on Front End servers and intercepts traffic. After intercepting traffic, you can change the headers of SIP messages.

+2


source







All Articles