/** * The default action - show the home page */ public function soapgetuserlistAction() { $client = new Zend_Soap_Client('http://front.zend.local/Wsserver/index/soap?wsdl'); $users = $client->listUsers(); print_r( $users ); exit; }