我有一个 Yii 网络服务。WSDL 是自动生成的,但在使用 SoapUI 测试它们时出现错误。
这是我得到的错误示例:
Mon Sep 02 17:24:53 CEST 2013:ERROR:org.apache.xmlbeans.XmlException: union value 'unbounded' does not match any members of 'type of maxOccurs attribute in xs:narrowMaxMin'
我确实有这样的 1-N 关系:
/**
* @var Foo[] Foos {nillable=true, minOccurs=0, maxOccurs=unbounded}
* @soap
*/
public $foos;
据我所知maxOccurs=unbounded
应该是正确的,那有什么问题呢?
干杯!