5

I'd like to learn web services (SOAP, WSDL) and I primarily code in PHP. Can you suggest any book, that uses PHP to teach these concepts?

  • Just to comment, you might want to look into restful services. It doesn't use a WSDL or SOAP messages. You basically use http verbs to start certain actions on the service. Just a thought. – k to the z Apr 15 '11 at 01:50

4 Answers4

3

O'Reilly's PHP Cookbook has two chapters with good examples.

Ch 14 - Consuming Web Services
Ch 15 - Building Web Services

brian_d
  • 11,190
  • 5
  • 47
  • 72
2

try W3SCHOOLS first it can get you started off pretty quickly, WSDL and SOAP

bharath
  • 1,233
  • 2
  • 11
  • 19
1

Take a look on this nice book: "Zend Framework Web Services" It covers SOAP, RPC, REST, JSON-RPC and a range of other adjacent development topics, including web services testing.

WayFarer
  • 1,040
  • 11
  • 19
1

Also http://www.packtpub.com/toc/php-oracle-web-development-data-processing-security-caching-xml-web-services-and-ajax-table-cont#chapter_9 this book has a good example about building SOAP server and SOAP client that consumes it.

zokibtmkd
  • 2,173
  • 1
  • 22
  • 24