Hi Matthew,
don't worry about it anymore. I had an issue in my server handling part.
------------------------------------------------------------------
use Zend\Http\PhpEnvironment\Request;
use Zend\Soap\AutoDiscover;
use Zend\Soap\Server;
$url = $this->serverUrl() . '/listing/listing1403';
$request = new Request();
if ($request->getQuery('wdsl') == 'show') {
$autodiscover = new AutoDiscover();
$autodiscover->setUri($url);
$autodiscover->setClass('Pizza\Soap\Server');
echo $autodiscover->toXml();
} else {
$server = new Server();
$server->setUri($url);
$server->setClass('Pizza\Soap\Server');
echo $server->handle();
}
------------------------------------------------------------------
I just changed the row
echo $server->handle($request);
to
echo $server->handle();
And now it works.
Thanks,
Ralf
--
List: [email protected]
Info: http://framework.zend.com/archives
Unsubscribe: [email protected]