欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php中,怎么通过soap传递两个参数,(ms-security下)

程序员文章站 2022-06-01 10:12:16
...
php中,如何通过soap传递两个参数,(ms-security下)

$xml = '


admin
PasswordText

';

$header = new SoapHeader('http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd', 'CallbackHandler', new SoapVar($xml, XSD_ANYXML), TRUE);

$this->client = new SoapClient($wsdl);
$this->client->__setSoapHeaders(array($header));

$userInfo = turnObjectToArray($this->client->__call('checkUser', array('username' => array('username' => 'username', 'password' => 'password'))));




一运行上述代码,就提示出错

SoapFault exception: [soap:Server] Fault occurred while processing. in


后来连调时,对方看了下log,显示就把username传过去了,password没传过去


传递一个参数时对方是可以接收到的

$info = turnObjectToArray($this->client->__call('getClasses', array('gradeId' => array('gradeId' => $data['id']))));


怎么传递两个参数啊???
------解决方案--------------------
注意大小写 !
php中,怎么通过soap传递两个参数,(ms-security下)

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频