Is there any way to pull data from something like a global address list in outlook through javascript(not locally)? An example would be to be able to search for a contact and then taking their data from the server to be stored to local variables.
Asked
Active
Viewed 662 times
1
-
Where is the JavaScript going to run? Client side in a webpage? Via node.js? Via ASP? What outlook are you talking about? The desktop Outlook application? The outlook.com website? An Exchange server? – Quentin Jul 10 '14 at 11:47
-
This is in fact going to run in node.js with socket.io. And everything is on an exchange server. – Rigial9 Jul 10 '14 at 13:00
1 Answers
0
Not locally indeed. The web browser itself has no access to this information without some sort of plugin.
What you want is an ajax call to a web server in your domain that delivers this list in json. It's up to the platform you are using to list the people in your address list.
It's possible to use the global address list (read this) but you probably just want to search your LDAP database.
But all of this is usually done in either ASP/C# or PHP. You can find plenty of examples to do so.

Tiele Declercq
- 2,070
- 2
- 28
- 39