Hola:
1
quisiera saber como accedo a un WSDL generado con WebserviceController
<?php
class AritmethicController extends WebServiceController {
public function sayHelloAction() {
$a = "hello world WS";
return $a;
}
}
?>
2
Trato de acceder al mismo webservice desde un cliente
<?php
class ConsumerController extends ApplicationController {
public function indexAction() {
$webService = new WebServiceClient('
http://localhost/kumbia-ef/
aritmethic');
$mole = $webService->__call("sayHelloAction", array());
print_r($mole);
// $this->renderText($mole);
}
}
?>
No tengo ninguna respuesta, ni error, ni nada es posible que haya
algún problema?