私は単純なWebサービスを構築しようとしており、状況を超えて実行しています。何が間違っているのかわからないので、soapサーバーから返された値を取得できません。
indexController内にZend_Soap_ServerとZend_Soap_Clientがあります。
class IndexController
extends Zend_Controller_Action
{
public function init()
{
$this->getHelper('viewRenderer')->setNoRender(true);
Zend_loader::loadFile( APPLICATION_PATH . '/../library/Web/Service.php' );
}
public function indexAction() {}
public function serverAction()
{
if( isset( $_GET['wdsl'] ) ) {
$server = new Zend_Soap_AutoDiscover();
$server->setClass('Web_Service');
$server->handle();
} else {
$options = array(
'soap_version' => SOAP_1_1 ,
'uri' => 'http://webservices.localhost/index/server?wdsl=1'
);
$server = new Zend_Soap_Server(null, $options);
$server->setClass('Web_Service');
$server->handle();
}
}
public function testAction()
{
$client = new Zend_Soap_Client(
'http://webservices.localhost/index/server?wdsl'
);
print( $client->getMessage() ) ;
}
}
そして、soapサーバーに渡される非常に単純なServiceクラス:
class Web_Service
{
public function getMessage()
{
return 'ok';
}
}
Soap ServerのURLを要求すると、返されるはずのURLが返されます。
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://webservices.misterprint.com.br/index/server" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="Web_Service" targetNamespace="http://webservices.misterprint.com.br/index/server">
<types>
<xsd:schema targetNamespace="http://webservices.misterprint.com.br/index/server"/>
</types>
<portType name="Web_ServicePort">
<operation name="getMessage">
<documentation>getMessage</documentation>
<input message="tns:getMessageIn"/>
</operation>
</portType>
<binding name="Web_ServiceBinding" type="tns:Web_ServicePort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="getMessage">
<soap:operation soapAction="http://webservices.misterprint.com.br/index/server#getMessage"/>
<input>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://webservices.misterprint.com.br/index/server"/>
</input>
</operation>
</binding>
<service name="Web_ServiceService">
<port name="Web_ServicePort" binding="tns:Web_ServiceBinding">
<soap:address location="http://webservices.misterprint.com.br/index/server"/>
</port>
</service>
<message name="getMessageIn"/>
</definitions>
しかし、クライアントのテストにアクセスすると、何も出力されません。
たとえば、getMessageメソッドの名前をgetMessagesに変更すると、Zendは例外をスローします。
Message: Function ("getMessages") is not a valid method for this service
何が間違っているのかわかりません。
前もって感謝します!