PHP - 如何创建此 SOAP XML 请求?
我试图弄清楚如何在 PHP 中正确构造数据,以便发出如下所示的 SOAP XML 请求:
<typ:saveRequest locationName="example.com">
<typ:datatype owner="ME" class="OPEN">
<typ:order>1</typ:order>
<typ:datavalue>[email protected]</typ:datavalue>
</typ:datatype>
</typ:saveRequest>
PHP 函数如下所示:
$this->soapclient->saveRecord($dataparams);
如何构造 $dataparams 以适应上述 saveRequest?即,类似:
$dataparams= array(
'locationName' => $domain,
...
);
I'm trying to figure out how to structure data properly in PHP in order to make a SOAP XML request like this:
<typ:saveRequest locationName="example.com">
<typ:datatype owner="ME" class="OPEN">
<typ:order>1</typ:order>
<typ:datavalue>[email protected]</typ:datavalue>
</typ:datatype>
</typ:saveRequest>
The PHP function looks like this:
$this->soapclient->saveRecord($dataparams);
How do I structure $dataparams to fit the above saveRequest? ie, something like:
$dataparams= array(
'locationName' => $domain,
...
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您仍然需要帮助:
然后运行
这应该可以做到,以防我理解正确。我不确定位置/所有者/类别,但至少这可以给您一个起点。
In case you still need help with this:
then run
This should do it, in case I understood correctly. I am not sure about the location / owner / class but at least this could give you a starting point.
使用我认为很好的 NuSOAP 库。
简介在这里 http://www.scottnichol.com/nusoapintro.htm#hw
Use NuSOAP library for this that I find good.
An introduction is here http://www.scottnichol.com/nusoapintro.htm#hw