如何为xsd:anyType创建soapvar对象

时间:2012-01-12 09:43:52

标签: php soap

任何人都可以解释一下如何在php中使用soapvar为anytype参数指定类型吗?

  <complexType name="Entry">
            <sequence>
                <element name="key" nillable="true" type="xsd:anyType" minOccurs="0" />
                <element name="value" nillable="true" type="xsd:anyType" minOccurs="0" />
            </sequence>
        </complexType>

例如:

$arr=array('key'=>new SoapVar('EMAIL_ADDRESS',SOAP_ENC_OBJECT,'xsd:anyType'),'value'=>new SoapVar('xxxx@gmail.com',SOAP_ENC_OBJECT,'xsd:anyType'));

当在yodlee sdk中的soapclient中向寄存器用户传递userprofile的上述数组时,它返回“Unknown”异常。

1 个答案:

答案 0 :(得分:6)

Hai我终于发现我的问题基于命名空间url问题而且我使用了这个

$arr=array('key'=>new SoapVar('EMAIL_ADDRESS',XSD_ANYTYPE,'string','http://www.w3.org/2001/XMLSchema','key'),'value'=>new SoapVar('xxxx@gmail.com',XSD_ANYTYPE,'string','http://www.w3.org/2001/XMLSchema','value')); 

并且得益于所有

从yodlee服务器获得解决方案