Log In
Technologies
Join the Network
Member Services
Events & Community
Jabber Developer
Jabber
What is Jabber?
The Jabber Web Tool Kit
Web Tool Kit In Use
The Jabber Application
Better Together
Develop and Test
Integrated Jabber
Voice & Video
Overview
Get Started
Sample Code
Reference Material
Jabber SDK Release Notes SDK v3.0
Troubleshooting
IM & Presence
Overview
Get Started - Hosted Deployment
Get Started - On Premise Deployment
Sample Code
Reference
Voice Mail
Overview
Get Started
Sample Code
Reference
Troubleshooting
Meeting
Overview
Get Started
Sample Code
Reference
Troubleshooting
Testing
Overview
Shared Jabber Sandbox
Rich UC Sandbox
Learn
Voice & Video: How to...
Implement Graceful Registration
Jabber Voice best practices
Embed a softphone in under 5 min
Install the Node Component
Install a Google Gadget
Add video call capabilities
IM and Presence: How to...
Use the Jabber IM Core APIs
Use the Jabber IM UI Components
Deploy the Jabber demo in salesforce.com
Voice Mail: How to...
Send a Message with Attachments
Meeting: How to...
Launch meetings on mobile
Use SSO with WebEx APIs
Use WebEx best practices
Community and Support
Technical Support
Commercial Support
Go to Market
Forum
Sitemap
Contact Us
Custom Integration
FAQs
Voice & Video
IM and Presence
Voice Mail
Meeting
Collaboration Developer Sites
Collaboration Hub
WebEx Web Conferencing Developer
WebEx Social Developer
Voice and UC Developer
Voice and UC AXL Developer
Voice and UC PAWS Developer
Contact Center Developer
Breadcrumbs
Community and Support
Forum
IM & Presence Forum
Features and Enhancements
Outlook Contact
Message Boards Home
Recent Posts
Statistics
Answer
(
Unmark
)
Mark as an Answer
« Back to Features and Enhancements
Outlook Contact
Threads [
Previous
|
Next
]
Christophe Baehr
Posts:
2
Join Date:
2/17/09
Recent Posts
Outlook Contact
Answer
11/14/12 5:21 PM
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Hi all,
It seems that the last version of Cisco Jabber (9.1) contains an Outlook Connector that looks in your Personal Contact Cards and allow you to add this contact as an "External contact" in the contact list of Cisco Jabber.
Does anybody know if there's something similar integrated in the SDK that would allow us to use this kind of lookup ?
Thanks a lot
Regards
Fabian
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Ting-Hao Chen
Posts:
79
Join Date:
5/17/12
Recent Posts
RE: Outlook Contact
Answer
11/20/12 9:53 PM as a reply to Christophe Baehr.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Christophe,
As far as I know this is not in the roadmap for web SDK. However, you can implment this by using ActiveX.
Below please see some sample Javscript code that allows you to retrieve the Outlook contact list that might help.
var Const_olFolderContacts = 10;
var objApp = new ActiveXObject("Outlook.Application");
var objNS = objApp.GetNamespace("MAPI");
var colContacts = objNS.GetDefaultFolder(Const_olFolderContacts).Items
for( var i=1; i<=colContacts.count;i++)
{
var v = colContacts.item(i);
alert(v["FullName"]+" ("+v["Email1Address"]+")");
}
Howard
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top
Christophe Baehr
Posts:
2
Join Date:
2/17/09
Recent Posts
RE: Outlook Contact
Answer
11/21/12 1:10 PM as a reply to Ting-Hao Chen.
Mark as an Answer
Submit
Reply with Quote
Quick Reply
Hi Howard,
Thanks for your input.
Using activeX means using IE only, which is not a solution.
I though something was on the way since the jabber 9.1 client does support it
Regards
Fabian
Sign in to vote.
Flag
Please sign in to flag this as inappropriate.
Top