The SOAP extension is a fast and fairly complete interface for creating
and working with SOAP web-services.
<?php
// instantiate SOAP client object
$client = new SoapObject( "http://example.com/soap_server.php",
"urn:Object");
echo $client->version(); // call version() method
?>
- WSDL Code Generation improved
- Schema Code Generation added!
- Smaller code base, easier to extend
- Streams API support
- Uses DOM
- Cleaner code, better organized
- Makes use of new OO support in PHP 5