I need to write a SOAP client using PHP 5.3. The WSDL for the service is reasonably complicated.

I can't find a PHP SOAP tutorial anywhere that walks through how to do this - I haven't found any that use the 5.3 SoapClient and explain how to construct SoapVars and SoapParams for complex data types.

Is this the best library to use? I'm assuming it must be for speed. I've seen a lot of references to nusoap which I'm assuming was the library most people used before PHP got its own native libraries.

Does anyone know where I can find a tutorial to help please?

Thanks

link|improve this question

67% accept rate
I have looked and I don't think there is any decent support for complex SOAP data structures in PHP. – Craig Sep 22 '10 at 3:44
No, neither do I. I ran into all sorts of problems. I'm reimplementing in Java. Thanks anyway. – timmy Sep 22 '10 at 8:54
6  
resurrecting the old thread here - I've done a bit of PHP SOAP calls and haven't had any problems; even with complex data structures. You may want to at least upvote an answer here for the people that helped if you've moved past PHP – JayTee Feb 9 '11 at 13:13
@JayTee can u illustrate ur php/soap calls or link to a working example am stuck with uk mail api dont know what to do – Rinzler May 9 at 6:12
@Rinzler could you give a link to concrete example of something you're stuck with? – Jack May 13 at 15:42
feedback

12 Answers

Can't answer the bit about a tutorial, but the PHP built-in SOAP Client vs NuSoap I can answer:

NuSoap was written before PHP had any built-in support for SOAP. It became fairly popular and does do most things you'd want a SOAP client to do. However since PHP introduced its own built-in SOAP client, NuSoap is no longer required and - more importantly - is no longer in active development.

Therefore the only real reason to use NuSoap now would be for legacy reasons, where you were already using it before, or if you're stuck on an older version of PHP which doesn't have the SOAP client.

link|improve this answer
Thanks. I thought that'd be the case – timmy Sep 21 '10 at 11:58
I've got one use case for Nusoap. Talking to sharepoint web services. Nusoap can authenticate with all the methods CURL can including NTLM which currently isn't possible with the built-in soap client. It is quite old though, employing php4 style constructors. – txyoji Apr 25 at 2:02
feedback

Check out,

http://devzone.zend.com/article/689

http://www.codewalkers.com/c/a/Miscellaneous/Using-SOAP-with-PHP/

http://www.lokad.com/WsPhpTutorial.ashx

link|improve this answer
None of these deal with complex data types unfortunately. – timmy Sep 21 '10 at 13:04
feedback

Read this!

link|improve this answer
feedback

The Zend Framework has a SOAP client that allows mapping PHP classes to complex schema types, or you can just stick with arrays or objects.

link|improve this answer
feedback

few days back i was looking for information too, i'm this week i'm going to ride me on ! the most nice post was this: http://www.scottnichol.com/nusoapprogwsdl.htm

Check it!, let me know your testings, i'm going to work on this too, by the way i'm using nusoap for php, i saw this implemented few years back on a big company it was going great, but any others system are aceptable but less complex as RPC using perl or based on php too.

link|improve this answer
feedback

for the bounty question you looking at integrating

uk mail api with wsdl webservices look at this question of the same kind

hope it helps you

php soap client for uk mail webservice api?

link|improve this answer
feedback

http://plutov.by/post/web_service_soap

link|improve this answer
can i see a working example somehow how from a single php file soap is handled with request/response from the server using api . – Rinzler May 7 at 10:47
plutov i dont get russian and seems like it only expalins half the procedure – Rinzler May 7 at 11:00
feedback

W3Schools has a good tutorial - http://www.w3schools.com/soap/

PHP SOAP Extension in PHP 5.3.1 (WITH WSDL) - http://www.herongyang.com/WSDL/PHP-SOAP-Extension-in-PHP-531.html

Using Soap as Web service http://www.youtube.com/watch?v=yK-o2aCwUlk

PHP.NET http://php.net/manual/en/class.soapclient.php

Soap Server class http://www.phpclasses.org/package/251-PHP-SOAP-protocol-requests-handler-.html (Not sure if its useful, just thought I'd include it)

link|improve this answer
can i see a working example somehow how from a single php file soap is handled with request/response from the server using api . – Rinzler May 7 at 10:47
feedback

You can try WSF/PHP Library which supports almost the full WebService standards stack, but it's quite hard to get into because of lack of documentation and support.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.