After having installed PHP5 SOAP support it’s time to try it… I’ve read the article PHP SOAP Extension from Zend.
Calling a method using WSDL is really easy:
<?php $client = new SoapClient("http//services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl"); print($client->getQuote("ibm")); ?>
But my aim is to build a small SOAP server. The first step is to create the WSDL and a . . . → Read More: Working with SOAP in PHP
Recent Comments