Savon:如何将标头从更改为到或者不同的东西
在Savon,有什么办法可以改变
<env:Header>
现状
<soap:Header>
或者做一些不同的事情吗?
我尝试在请求块中添加一个额外的标头标签,如下所示:
soap.header['soap:Header']
但这不起作用。
我浏览过 Savon Docs,但没有找到任何地方可以更改该标签,只能通过手动构建 XML 来更改。
In Savon, is there a way to change
<env:Header>
to be
<soap:Header>
or anything different?
I've tried in the request block putting an additional header tag like this:
soap.header['soap:Header']
But that won't work.
I've browsed Savon Docs and haven't found anywhere to change that tag, only by manually building the XML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已编辑 Savon 1.0.0
该值可以在配置块中设置,您还可以在其中设置日志记录和其他参数。只需将其放入
您的代码中即可。
EDITED for Savon 1.0.0
The value can be set in the configure block where you can also set logging and other parameters. Simply put
into your code.
对于较新版本的 Savon:
For newer versions of Savon: