PHP Soap 标头帮助

发布于 2024-09-13 11:35:37 字数 594 浏览 5 评论 0原文

我有一个相当简单的 php/soap 标头问题。

这就是我需要的。

<ns1:Identity token="123456789"></ns1:Identity>

这就是我得到的...

<ns1:Identity><item><key>token</key><value>123456789</value></item></ns1:Identity>

使用这段代码...

$headers[] = new SoapHeader('http://qpricer.com/Services/Pricing','Identity',array('token'=> '123456789'));
$client->__setSoapHeaders($headers);

使用soapui,我已经将问题范围缩小到了这里。

如何从第二个转到第一个?

如果您能提供帮助,我们将不胜感激,感谢您的宝贵时间。

I have a fairly simple php/soap header question.

Here's what I need.

<ns1:Identity token="123456789"></ns1:Identity>

Here's what I get...

<ns1:Identity><item><key>token</key><value>123456789</value></item></ns1:Identity>

using this code...

$headers[] = new SoapHeader('http://qpricer.com/Services/Pricing','Identity',array('token'=> '123456789'));
$client->__setSoapHeaders($headers);

Using soapui, I have narrowed my issue down to this right here.

How do I go from the second one to the first one?

An help would be greatly appreciated, thanks for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情独悲 2024-09-20 11:35:40

因为这是我必须设置的唯一标头,所以我能够使用以下代码修复它。

$headers[] = new SoapHeader('http://www.qpricer.com/Services/Pricing','Identity token="123456789"',null);

这生成了以下 XML

<ns1:Identity token="123456789"/>

并且它起作用了!

Because this was the only header I had to set, I was able to fix it using the following code.

$headers[] = new SoapHeader('http://www.qpricer.com/Services/Pricing','Identity token="123456789"',null);

This produced the following XML

<ns1:Identity token="123456789"/>

and it worked!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文