0

私は WAMP と CakePHP を使用しており、NuSOAP サーバーをミックスに追加しようとしています。NuSOAP 経由で動的 WSDL を生成できますが、一番下に NuSOAP によって設定されているパラメーターがあり、意味がありません。

<soap:address location="http://localhost/cakephp/app/webroot/index.php"/>

正しい行は次のとおりです。

<soap:address location="http://localhost/cakephp/web_service/web_service"/>

これを変更する方法や、NuSOAP がその場所を取得している場所さえもわかりません (私のコードではまったく参照されていません)。

これは私が使用している私のコードです:

    class WebServiceController extends AppController {
        var $components = array('RequestHandler');
        public function web_service()
        {
            $this->layout = FALSE;
            $this->autoRender = FALSE;
            Configure::write('debug', 0);
            $this->RequestHandler->respondAs('xml');
            App::import('Vendor', 'nusoap', array('file' => 'nusoap'.DS.'lib'.DS.'nusoap.php'));
            include 'local_functions.php';
            if ( !isset( $HTTP_RAW_POST_DATA ) ) $HTTP_RAW_POST_DATA =file_get_contents( 'php://input' );


            $server = new soap_server();
            $namespace = "http://localhost/web_service/web_service";
            $server->configureWSDL("web-service", $namespace);//, "urn:web-service");
            $server->wsdl->schemaTargetNamespace = $namespace;
            include 'wsdl_types.php';
            $server->register("Subscribe", array("accessKey" => "xsd:string","publisher" => "xsd:string","subscribeData" => "xsd:string"), array("return" => "xsd:string"), "urn:web-service", "urn:web-service#Subscribe", "rpc", "encoded", "Subscribe to mail or mobile list(s)");
            $server->register("SendEmailFromWeb", array("accessKey" => "xsd:string","publisher" => "xsd:string","sendEmailFromWebData" => "xsd:string"), array("return" => "xsd:string"), "urn:web-service", "urn:web-service#SendEmailFromWeb", "rpc", "encoded", "Send email from web interface");
            $server->register("SendEmailFromMobile", array("accessKey" => "xsd:string","publisher" => "xsd:string","sendEmailFromMobileData" => "xsd:string"), array("return" => "xsd:string"), "urn:web-service", "urn:web-service#SendEmailFromMobile", "rpc", "encoded", "Send email from mobile interface");
            $server->register("UpdateProfile", array("accessKey" => "xsd:string","publisher" => "xsd:string","updateProfileData" => "xsd:string"), array("return" => "xsd:string"), "urn:web-service", "urn:web-service#UpdateProfile", "rpc", "encoded", "Update subscriber profile (name, etc.)");
            $server->register("Unsubscribe", array("accessKey" => "xsd:string","publisher" => "xsd:string","unsubscribeData" => "xsd:string"), array("return" => "xsd:string"), "urn:web-service", "urn:web-service#Unsubscribe", "rpc", "encoded", "Unsubscribe from mail or mobile list(s)");
            $server->register("SMSTriggeredEmailNotify", array("accessKey" => "xsd:string","publisher" => "xsd:string","smsTriggeredEmailNotifyData" => "xsd:string"), array("return" => "xsd:string"), "urn:web-service", "urn:web-service#SMSTriggeredEmailNotify", "rpc", "encoded", "Still working on this");
            $server->service($HTTP_RAW_POST_DATA);


        }
    }
4

1 に答える 1

9

私は答えを見つけました:

$server->configureWSDL("web-service", $namespace);

次のようにする必要があります。

$endpoint = "http://localhost/web_service/web_service";
$server->configureWSDL("web-service", $namespace, $endpoint);
于 2012-07-24T21:01:40.280 に答える