FIM and Cisco Call Manager
Hi,
Not having worked with Cisco Call Manager before - does anyone know how it would integrate with FIM (if at all) ?
Does it pull everything it needs from the Exchange GAL? Or do you typically update tel, extension, fax etc .. information in Call Manager and sync that back to FIM and GAL?
What MA would you use if you need to connect with Call Manager?
thanks
December 22nd, 2010 2:44am
I think it's a mix of both in terms of where it gets the data from. You'd need an XMA to connect to Call Manager's API I'm sure.My Book - Active Directory, 4th Edition
My Blog - www.briandesmond.com
Free Windows Admin Tool Kit Click here and download it now
December 22nd, 2010 1:48pm
Greetings:
Could you publish any info on this if you have it? Cisco Call Manager version is 8.x
Thank you
May 3rd, 2012 4:40pm
I have created an XMA for the Cisco Call Manager years ago, at that time is created "raw" soap commands and send that to the server, below is an example for the soap commands that i then sended:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<axl:getUser xmlns:axl="http://www.cisco.com/AXL/1.0" xsi:schemaLocation="http://www.cisco.com/AXL/1.0 http://gkar.cisco.com/schema/axlsoap.xsd" sequence="1">
<userid>{UserId}</userid>
</axl:getUser>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
In code I replace the connector space attribute 'UserId' with the actual value and send it to the server via a standard HttpWebRequest and using the POST protocol.
The code is not free available, but when doing some searching here is a short example exactly for the Cisco Call Manager (6.0)
https://supportforums.cisco.com/thread/323762
Need realtime FIM synchronization and advanced reporting? check out the new
http://www.imsequencer.com that supports FIM 2010, Omada Identity Manager, SQL, File, AD or Powershell real time synchronization!
Free Windows Admin Tool Kit Click here and download it now
May 4th, 2012 2:20am


