Источник:
http://feedproxy.google.com/~r/GregO...3/_FWDKdpe1r0/
==============
A new feature introduced with Dynamics AX 2009 was integration with Office Communicator.
This enables the presence of a person/contact to be shown as part of the contact information, along with links to contact that person:

Office Communicator integration with Dynamics AX
Selecting the link to send an instant message to a contact launches the Office Communicator client conversation:
The following job shows how to send an instant message to a contact using Office Communicator from code:
static void UCMAExample(Args _args){ AlertSender.OCS_Sender ocSender; ; try { ocSender = new AlertSender.OCS_Sender(@"sip:Administrator@contoso.com", "ax-srv-03.contoso.com", "Administrator", @"thepassword", "contoso"); ocSender.SendMessage("sip:Alicia@contoso.com", "Hello from AX", "Normal"); } catch(Exception::CLRError) { throw error(AifUtil::getClrErrorMessage()); }}To enable this you will need to install the UCMA redistributable, available as part of the UCMA SDK download:
http://www.microsoft.com/downloads/d...displaylang=en
You will also need to modify, compile and add the AlertSender.OCS_Sender .Net reference to AX, which is available to download here:
http://www.microsoft.com/downloads/d...displaylang=en

Источник:
http://feedproxy.google.com/~r/GregO...3/_FWDKdpe1r0/