我正在使用Zend soap autodiscovery为我的Web服务器生成WSDL文件。问题是每个complexType的每个元素都默认为nillable="true"
。如何根据需要声明元素?我读了PHPDoc但什么都没找到。
编辑:代码:
class MyService {
/**
* Identify remote user.
*
* @param LoginReq
* @return LoginResp
*/
public function login($request) {
// Code ....
}
}
class LoginReq {
/** @var string */
public $username;
/** @var string */
public $password;
}
class LoginResp {
/** @var string */
public $errorCode;
}
生成的WSDL:
<xsd:complexType name="LoginReq">
<xsd:all>
<xsd:element name="username" type="xsd:string" nillable="true"/>
<xsd:element name="password" type="xsd:string" nillable="true"/>
</xsd:all>
</xsd:complexType>
<xsd:complexType name="LoginResp">
<xsd:all>
<xsd:element name="errorCode" type="xsd:string" nillable="true"/>
</xsd:all>
</xsd:complexType>
EDIT2:我刚发现要将元素声明为必需/可选,您需要使用minOccurs/maxOcurrs
。它们都默认为1,因此默认情况下每个元素都是必需的。要声明可选元素,请使用minOccurs="1"
声明它。 Nillable仅用于允许元素为空。同样,我如何将元素声明为可选(因此Zend将minOccurs =“0”添加到该元素)?
答案 0 :(得分:11)
如果您在函数定义中设置了默认值,则它将是可为空的。
public function myMethod($argument = 'hello') {
// $argument is nillable
}
如果不是这样,你可以用doc块发布你的代码吗?
编辑:您的代码示例澄清了很多。
如果你看看第76行附近的Zend / Soap / Wsdl / Strategy / DefaultComplesType.php,你会看到:
// If the default value is null, then this property is nillable.
if ($defaultProperties[$propertyName] === null) {
$element->setAttribute('nillable', 'true');
}
这是确定您的“复杂类型”属性是否为空的代码。我会尝试更新您的代码以包含字符串的默认值。类似的东西:
class LoginReq {
/** @var string */
public $username = '';
/** @var string */
public $password = '';
}
如果您这样做,=== null
应评估为false。但请确保您的代码正确处理数据验证。
如果这不起作用,请告诉我!
答案 1 :(得分:0)
Zend论坛上有一个functional patch。它包含对DefaultComplexType.php进行黑客攻击,以添加对minOccurs和maxOccurs属性的管理。这样可以完美工作,并改善了与某些Web服务的互操作性。