gpt4 book ai didi

PHP5 的命名空间在实现 Web 服务时导致不正确的 WSDL 类型名称

转载 作者:可可西里 更新时间:2023-11-01 13:22:53 24 4
gpt4 key购买 nike

我正在尝试使用 PHP 中的 Zend_Soap_Server 类实现 SOAP 服务器。

这是webservice.php文件,它是请求的入口点:

<?php
require_once 'library.php';
require_once 'Zend/Loader/Autoloader.php';
$autoloader = \Zend_Loader_Autoloader::getInstance();

class Math
{
/**
* This method takes ...
*
* @param integer $inputParam
* @return \Library\IncrementedInt
*/
public function increment($inputParam)
{
return new \Library\IncrementedInt($inputParam);
}
}

$options = array('uri' => 'http://localhost' . $_SERVER['REQUEST_URI']);

if (isset($_GET['wsdl'])){
$server = new Zend_Soap_AutoDiscover();
$server->setClass('Math');
}
else {
$server = new Zend_Soap_Server(null, $options);
$server->setClass('Math');
$server->setObject(new Math());
}

$server->handle();

我有这样的 library.php 文件:

<?php
namespace Library;

class IncrementedInt
{
public $original;
public $incremented;

public function __construct($num)
{
$this->original = $num;
$this->incremented = ++$num;
}
}

调用 http://localhost/webservice.php?wsdl 将输出:

<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" 

xmlns:tns="http://localhost/webservice.php" 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="Math" targetNamespace="http://localhost/webservice.php">
<script/>
<types>
<xsd:schema targetNamespace="http://localhost/webservice.php">
<xsd:complexType name="\Library\IncrementedInt">
<xsd:all/>
</xsd:complexType>
</xsd:schema>
</types>
<portType name="MathPort">
<operation name="increment">
<documentation>This method takes ...</documentation>
<input message="tns:incrementIn"/>
<output message="tns:incrementOut"/>
</operation>
</portType>
<binding name="MathBinding" type="tns:MathPort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="increment">
<soap:operation soapAction="http://localhost/webservice.php#increment"/>
<input>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/webservice.php"/>
</input>
<output>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost/webservice.php"/>
</output>
</operation>
</binding>
<service name="MathService">
<port name="MathPort" binding="tns:MathBinding">
<soap:address location="http://localhost/webservice.php"/>
</port>
</service>
<message name="incrementIn">
<part name="inputParam" type="xsd:int"/>
</message>
<message name="incrementOut">
<part name="return" type="tns:\Library\IncrementedInt"/>
</message>
</definitions>

现在我使用 soapUI 4.5.1 来测试功能,它是一个实现 SOAP 客户端的 Java 应用程序。给它 URI http://localhost/webservice.php?wsdl 应该导致函数 increment 被提取,但它不会。相反,它会提示错误:The Value '\Library\IncrementInt' is an invalid name。在我看来,它在接受 \ 作为类型名称的一部分时遇到了问题。另一方面,PHP 离不开它们。

为确保其他一切正常,我测试了不带 namespace 的完全相同的文件,并且它运行顺利。

有没有人遇到过类似的问题,更重要的是,有没有人知道如何克服这个问题?

[更新]

我设法测试了 the same scenario with ZF2它有效。也许我不得不放弃ZF1了!

最佳答案

XSD 对象类型 \Library\IncrementedInt 不是您概述的 PHP 命名空间中的 PHP 类:

<?php
namespace Library;

class IncrementedInt
{
...

前缀类型实际上是:

tns:\Library\IncrementedInt

注意前面的 tns: 是前缀。您无法在 PHP 中表达它,当您将它扩展到它的命名空间 URI 时,它会变得更加清晰:

{http://localhost/webservice.php}\Library\IncrementedInt

此外,Zend SOAP 来自之前 PHP 命名空间 (PHP 5.2),因此它需要采取不同的策略将此类型别名为 PHP 类型(类名)。它采用类型的本地名称:

\Library\IncrementedInt

并用下划线替换该类型名称中的每个“无效”字符:

_Library_IncrementedInt

因此您需要以这种方式命名类:

<?php

class _Library_IncrementedInt
{
...

如果你想让它开箱即用。


然后您通过评论要求澄清:

So what you are saying is that, there's nothing I can do to have a namespaced class as a type name, right?

嗯,至于默认行为很可能不是,但是由于涉及到术语策略,我想说有一些机制可以为该操作扩展 Zend Soap 并注入(inject)一个不同的机制,例如允许命名空间类(按其 FQCN 分类),请参阅 Strategy Pattern .

如果这只是一个类,您可以同时做一些廉价的技巧,将您的命名空间类扩展为短名称或使用 class_alias 作为别名。 .

关于PHP5 的命名空间在实现 Web 服务时导致不正确的 WSDL 类型名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18419109/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com