What is the best way to implement web services in PHP? I have heard about libraries like NuSOAP and WSO2 web service platform, But don't know what is the best ( or a good and easy to learn) for using web service in PHP?
|
|
SOAP is certainly not the ONLY way to implement Web services. If you're open to other paradigms, have a look at REST: http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer Unlike SOAP (which has multiple standards/vendors), REST is both vendor- and protocol-agnostic. Instead, RESTful Web services are implemented using these guidelines (from the Wikipedia article):
Back to PHP, here is the reference guide for the ZendFramework implementation of REST Server functionality: http://framework.zend.com/manual/en/zend.rest.server.html Also, here is a link to another answer I gave that references some useful information re. ZendFramework and REST: http://stackoverflow.com/questions/1687036/lightweight-restful-php-server/1687099#1687099 -aj |
||
|
|
|
|
since PHP 5, there is a built in SOAP library in PHP. I usually tend to use built in libraries rather than PHP implementations, as they tend to be faster and stable. One library I used when not using the built in one, is Zend_Soap, which is built on top of the built in SOAP and it simplifies working with it. |
||
|
|
|
|
You can either choose WSDL+SOAP to build your web services, or implement RESTful web services. Either way, you need to understand what is web services and the basic components of it. To me, REST seems more effective. Here is an example based on delicious. |
||
|
|
