I have found this piece of PHP code:
<?php
$client = new SoapClient("http://localhost/code/soap.wsdl");
// Soap call with HelloWorld() method
$something = $client->HelloWorld(array('option1' => 'attribute1'));
// Convert object to array
$array = (array)$something;
I just want to know where soap.wsdl resides or from where we can download soap.wsdl file for PHP.