up vote 1 down vote favorite
1
share [g+] share [fb]

I have been approached to create a website using Sabre Web Services to power the reservations system. All documentation I have seen refers to .NET or Java solutions, I was in doubt whether PHP can be used as access is performed using SOAP. I have found no further information about this, I assume the answer is yes, but wonder why there is not a single reference to this being possible - all solutions seem to be .NET

Any suggestions?

Thanks!

link|improve this question
SOAP is in PHP5. – Till Mar 26 '09 at 23:47
feedback

protected by YOU Mar 11 '11 at 1:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

4 Answers

up vote 0 down vote accepted

Yes, PHP can be be used to connect to SOAP web services - take a look at NuSOAP. It allows a nice & easy object oriented way to consume web services.

link|improve this answer
feedback

SOAP is language independent, which means that any language can communicate with the web service if it can generate SOAP requests and handle responses.

PHP's SOAP documentation can be found in the php manual

link|improve this answer
feedback

PHP can be used to call SOAP pretty effectively.

There's a very good tutorial on devzone on how you can use SOAP well.

link|improve this answer
feedback

I've just done a little digging around and it looks like you can use stream_context_create() to create a custom HTTP stream context. This would include the HTTP content type header you need. The resource returned from this function call can then be passed to the SoapClient constructor to be used in SOAP calls. Have a look at http://ca.php.net/stream_context_create and the PHP manual page for the SoapClient constructor (sorry, I can only post one link as a new user) for more information.

link|improve this answer
feedback