Веб-браузер не вызывает веб-сервис - вы можете создать клиент PHP:
// Pull in the NuSOAP code
require_once('lib/nusoap.php');
// Create the client instance
$client = new soapclient('your server url');
// Call the SOAP method
$result = $client->call('hello', array('name' => 'StackOverFlow'));
// Display the result
print_r($result);
Это должно отобразить Hello, StackOverFlow
Обновление
Для создания WSDL вам необходимо добавить следующее:
$server->configureWSDL(<webservicename>, <namespace>);