My current project requires that I pull a list of users Contacts from Exchange, Present them in a web part and have the presence bubble enabled allowing the user to send mail, call, create meeting request and so forth.
I'm calling it from code as normal:
return string.Format("<li><a class=\"ms-imnlink\" href=\"javascript:;\"><img width=\"12\" height=\"12\" id=\"IMID12\" onload=\"IMNRC('", Contact.Email, "')\" alt=\"My SID\" src=\"/_layouts/images/imnoff.png\" border=\"0\" showofflinepawn=\"1\"/ sip=\" \"></a> {0}</li>", Contact.FullName);
IMNRC() Is going to Active Directory and populating the presence bubble with user properties from AD, such as email address, work phone, work mobile and so forth.
I need to either find a way to populate this information from <b>Exchange properties</b>, or Hide the information all together while still offering full functionality of the p
View Complete Post