PHP 和 SOAP。换信封
有很多关于 PHP 和 SOAP 的问题。但我没有找到关于我的情况的答案。
所以。我使用 PHP SoapClient 和 WSDL。对象发送这个:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.site.com"><SOAP-ENV:Body>
但我需要这个:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>
问题。我如何使用标准 PHP 类 SoapClient 来做到这一点?
谢谢。
It is many questions there about PHP and SOAP. But I am not found answer on my situation.
So. I use PHP SoapClient and WSDL for it. Object sends this:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.site.com"><SOAP-ENV:Body>
But I need this:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>
Question. How I can do this with standard PHP class SoapClient?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 php.net 中搜索答案
此代码更改请求中的信封。并且需要ASP SOAP服务器。
I search answer in php.net
This code change Envelope in request. And need for ASP SOAP server.
使用
SoapVar::typeNamespace
设置您的xmlns:xsi
如下所示:
来源:https://www.php.net/manual/fr/soapvar.construct
Use
SoapVar::typeNamespace
for set yourxmlns:xsi
something like this :
source : https://www.php.net/manual/fr/soapvar.construct