0

私は単純な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

何が間違っているのかわかりません。

前もって感謝します!

4

1 に答える 1

1

こんにちは、最初に確認したいことがいくつかありますが、すでにこれを知っている/行ったことがあるかもしれないことに感謝します。

SOAP サービスの開発中に、デフォルト設定を変更しない限り、WSDL がキャッシュされている可能性があります。

関連する環境設定 (開発中など) の下で、これを application.ini に追加することができます。

phpSettings.soap.wsdl_cache_enabled = 0

つまり、WSDL がキャッシュされないことを意味し、その面での問題を除外することができます。

また、ZF で WSDL を自動生成する場合は、メソッドに基本的なコメントを追加して、ZF WSDL ジェネレーターがそれらを取得できるようにする必要があります。たとえば、@param および @return 情報を追加します。このような:

 /**     
  * @return string
  */
 public function getMessage()
 {
     return 'ok';
 }

それで、サーバーメソッドで何か違うことを試してみてください....試してみてください

public function serverAction()
{
    $baseUrl = 'http://webservices.localhost/index/server';

    if( isset( $_GET['wdsl'] ) ) {
        $strategy = new Zend_Soap_Wsdl_Strategy_AnyType();
        $server = new Zend_Soap_AutoDiscover($strategy);
        $server->setUri($baseUrl);
        $server->setClass('Web_Service');
        $server->handle();
    } else {            
        $server = new Zend_Soap_Server($baseUrl . '?wsdl');
        $server->setClass('Web_Service');
        $server->handle();
    }
}
于 2013-01-07T00:42:25.603 に答える