gpt4 book ai didi

ruby-on-rails - 使用 Savon gem 修改 SOAP XML 命名空间

转载 作者:数据小太阳 更新时间:2023-10-29 02:02:04 24 4
gpt4 key购买 nike

我正在尝试修改我的 Savon SOAP 调用中的命名空间之一。这是我的请求的样子:

HTTPI GET request to www.intg.pathway.verosapps.com (excon)
SOAP request: https://www.intg.pathway.verosapps.com/VerosPathway.svc
SOAPAction: "urn:IVerosPathway/VerosPathway_Ping", Content-Type: text/xml;charset=UTF-8, Content-Length: 434
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<VerosPathway_Ping>
<request>
<Credentials>
<UserId>*username*</UserId>
<Password>*password*</Password>
</Credentials>
</request>
</VerosPathway_Ping>
</soapenv:Body>
</soapenv:Envelope>

我不得不做大量调整,因为这家公司希望它的客户使用 .NET 进行 SOAP 交互,而我们使用的是 Ruby。我非常接近正确的格式,但我需要在信封部分做两件事之一:

  1. 将“xmlns="http://tempuri.org/"更改为"xmlns:wsdl="http://tempuri.org/"
  2. 完全删除“xmlns="http://tempuri.org/"。

这是我的 Savon 电话:

apiClient = Savon.client(endpoint: "https://www.intg.pathway.verosapps.com/VerosPathway.svc", env_namespace: :soapenv, namespace_identifier: nil, logger: Rails.logger, log_level: :debug, log: true, :pretty_print_xml => true, ssl_version: :TLSv1, wsdl: 'https://www.intg.pathway.verosapps.com/VerosPathway.svc?wsdl')

如果我将以下行添加到我的 Savon 调用中:

namespaces: {"xmlns:wsdl" => "http://tempuri.org/"}

那么我的请求是这样的:

HTTPI GET request to www.intg.pathway.verosapps.com (excon)
SOAP request: https://www.intg.pathway.verosapps.com/VerosPathway.svc
SOAPAction: "urn:IVerosPathway/VerosPathway_Ping", Content-Type: text/xml;charset=UTF-8, Content-Length: 434
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://tempuri.org/">
<soapenv:Body>
<VerosPathway_Ping>
<request>
<Credentials>
<UserId>*username*</UserId>
<Password>*password*</Password>
</Credentials>
</request>
</VerosPathway_Ping>
</soapenv:Body>
</soapenv:Envelope>

所以在这种情况下,我只需要删除“xmlns="http://tempuri.org/"行。

如有任何建议,我们将不胜感激。

谢谢!

最佳答案

您可以简单地使用以下选项传递散列:

client = Savon.client(
wsdl: "https://example.com?wsdl",
log: true,
log_level: :debug,
pretty_print_xml: true,
namespace_identifier: :mes,
namespaces: {"xmlns:mes" => "http://example.com/messages/","xmlns:glob"=>"http://example.com/globals"}
)

关于ruby-on-rails - 使用 Savon gem 修改 SOAP XML 命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29654837/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com