Thanks Lee. I suspect this should be possible with CURL.
Main Topics
Browse All TopicsI want to integrate PHP applications with Exchange 2007/2010 to be able to allow PHP to send through Exchange, but also receive from Exchange in that when someone updates a contact or appointment, the data is pushed through to a PHP application either via XML or some other means.
The reason why I've mentioned 2007/2010 is because currently we're running 2003 but we are looking to move to the new version some time soon - we're just undecided whether we'll go for 2007 or 2010.
Any recommendations, suggestions, ideas? Any help would be greatly appreciated.
Our PHP app server is running Apache 2.2, PHP 5.2.11 and MySQL 5.0.
Thanks in advance.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I don't know enough about PHP to say if there is, or not. I'm pretty sure that MS have spent more time making it easier with .Net languages than they did with PHP :-) But I'm sure that there are HTTP requesters available for PHP. That is the most important thing. Next most important is an XML document processor, so that you can make sense of the server's reply to the SOAP request.
Business Accounts
Answer for Membership
by: LeeDerbyshirePosted on 2009-10-12 at 06:16:51ID: 25550951
You should be able to get your application to communicate with the Exchange server using EWS (Exchange Web Services). I haven't done this in PHP, but it's quite simple in ASP/VBScript. If you can instantiate an HTTP requester in PHP, then it should be possible. Here's my own very simple example of how to get started with EWS from the client side:
om/EWS-Fin dItem-List -Inbox- Exc hange-2007 .asp
http://www.leederbyshire.c
Regarding your other question about data being pushed to your PHP application, I suspect you can do that with EWS Notifications. Unfortunately, though, I haven't look at that yet.