Savon:如何将标头从更改为到或者不同的东西

发布于 2024-11-18 10:49:27 字数 359 浏览 3 评论 0原文

在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 技术交流群。

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

发布评论

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

评论(2

旧时模样 2024-11-25 10:49:27

已编辑 Savon 1.0.0

该值可以在配置块中设置,您还可以在其中设置日志记录和其他参数。只需将其放入

Savon.configure do |c|
  c.env_namespace = :soap
end

您的代码中即可。

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

Savon.configure do |c|
  c.env_namespace = :soap
end

into your code.

云醉月微眠 2024-11-25 10:49:27

对于较新版本的 Savon:

Savon.client(env_namespace: :soapenv) 

For newer versions of Savon:

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