Porque tengo un error en hacer la llamada al web service
<html>
<head>
<title>WEB DE PRUEBA</title>
</head>
<body>
<?php
ini_set('soap.wsdl_cache_enabled', '1');
ini_set('soap.wsdl_cache_ttl', '1');
$YourName;
$YourSecondName;
$WebService="http://localhost:4070/Service1.asmx?op=sumar";
echo "|||||----------------BIENVENIDO-------------|||||||";
//parámetros de la llamada
$parámetros = array();
$parámetros['YourName'] = "Juan";
$parámetros['YourSecondName'] = "nacho";
//Invocación al web service
$client= new SoapClient($WebService, $parámetros);
//recibimos la respuesta dentro de un objeto
$result = $client->sumar($parámetros);
//Mostramos el resultado de la consulta
echo $result->sumarResult;
?>
</body>
</html>
Lo que esta en negrilla es el error que sale cuando pongo en el navegador:
localhost/Prueba/Web.php