- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在尝试调用 catalog_product_link.list
API 方法使用 Savon .但是,我一直收到错误 Error cannot find parameter
.
这是我正在使用的,尽管我已经尝试了多种调用方式,但仍然无法正确通过:
client = Savon.client(wsdl: 'http://localhost/index.php/api/soap/?wsdl')
response = client.call(:login){message(username: 'user', apiKey: 'key')}
session = response.body[:login_response][:login_return]
#These all do not work
client.call(:call){message(:session => session, :method => 'catalog_product_link.list', :type => 'up_sell', :productId => '166')}
client.call(:call){message(:session => session, :method => 'catalog_product_link.list', :type => 'up_sell', :product => '166')}
client.call(:call){message(:sessionId => session, :resourcePath => 'catalog_product_link.list', :args => {:type => 'up_sell', :product => '166'})}
client.call(:call){message(:sessionId => session, :resourcePath => 'catalog_product_link.list', :args => {:type => 'up_sell', :productId => '166'})}
client.call(:call){message(:sessionId => session, :resourcePath => 'catalog_product_link.list', :arguments => {:type => 'up_sell', :product => '166'})}
是否有不同的格式来使其正常工作?
更新:如果我尝试删除类型参数,它会给出错误 Given invalid link type
, 所以看起来它不喜欢关于多个参数的东西。
response = client.call(:call){message(:session => session, :method => 'catalog_product_link.list', :product => '166')}
最佳答案
我能够使用 Builder 让它工作:
class ServiceRequest
def initialize(session, type, product)
@session = session
@type = type
@product = product
end
def to_s
builder = Builder::XmlMarkup.new()
builder.instruct!(:xml, encoding: "UTF-8")
builder.tag!(
"env:Envelope",
"xmlns:env" => "http://schemas.xmlsoap.org/soap/envelope/",
"xmlns:ns1" => "urn:Magento",
"xmlns:ns2" => "http://xml.apache.org/xml-soap",
"xmlns:xsd" => "http://www.w3.org/2001/XMLSchema",
"xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance"
) do |envelope|
envelope.tag!("env:Body") do |body|
body.tag!("ns1:call") do |call|
builder.sessionId(@session, "xsi:type" => "xsd:string")
builder.resourcePath("catalog_product_link.list", "xsi:type" => "xsd:string")
builder.args("xsi:type" => "ns2:Map") do |args|
args.item do |item|
item.key("type", "xsi:type" => "xsd:string")
item.value(@type, "xsi:type" => "xsd:string")
end
args.item do |item|
item.key("product", "xsi:type" => "xsd:string")
item.value(@product, "xsi:type" => "xsd:string")
end
end
end
end
end
builder.target!
end
end
client.call(:call, xml: ServiceRequest.new(session, 'up_sell', '166').to_s)
感谢@rubiii direction .
关于ruby - 如何使用 Ruby Savon 为类别产品链接正确调用 Magento SOAP API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14633904/
我正在尝试关注讨论 here使用 Ruby 和 Savon。我能够检索 session ID,但是每当我执行来自需要身份验证(跟踪器)的客户端的请求时,我都会收到“授权失败”错误。 require '
我正在使用 savon 0.9.7 和 ruby 1.8.7,我提出以下要求: client = Savon::Client.new do wsdl.document = "http://lo
我正在尝试发出 soap 请求,但是当我使用 operation.body 方法时,每个数组似乎都不在 operation.build 之后的 xml 中。 这是 WSDL 的一部分: --
我正在尝试利用 ruby gem Savon 连接到 propertyware (http://propertyware.com/apidocs/Getting-Started) 提供的 Web
我正在尝试使用 Savon gem 连接到网络服务。我对服务的了解: wsdl 文件 url ".../service.svc?wsdl" 登录“登录” 密码“密码” 域“域” 我通过 SoapUI
我正在使用 savon gem 访问 abc 金融网络服务。我收到错误消息用户未授权。我正在使用此代码访问响应 @wsdl="https://webservice.abcfinancial.com/w
我正在编写一个 gem 来为 Ruby 添加对 SOAP 服务的支持(我讨厌自己这样做,但是,你知道,遗留系统感到孤独,需要找人谈谈),我想知道是否有办法我可以使用 Savon 作为客户端库编写一些测
如果我有以下 SOAP 请求: 0
我正在使用 Savon 2.6 来实现 SOAP 服务的客户端。我必须在数据库中保存原始请求和原始响应。获取原始 XML 响应不是问题,但如何获取原始 XML 请求? 我按以下方式使用 Savon:
当 Savon 解析 XML 时: 它返回一个散列 {MessageList: TradeMessage: [{@id: '123'},...,{@id: '456'}]}
我正在使用 Savon对于 SOAP 请求和 SOAP 请求 XML 的某些地方,我需要生成这段代码: 执行此操作的最佳方法是什么? 最佳答案 我找到了解决方案。 soap.bo
我在具有自签名证书的设备上执行 soap 请求。我设置了 verify_mode :none,但我仍然收到“深度 0 - 18:自签名证书”警告。我知道如果我可以设置 verify_callback,
我想从以下响应中读取 customer.customer_info_id 的值。我的回复还包括命名空间: 我尝试了以下方法: # Savon code tried:
我曾尝试在针对 WSDL 运行 Savon 时更改其日志记录,但未能成功更改日志记录级别。 我阅读了文档:http://rubiii.github.com/savon/#global_configur
在运行 Cucumber 测试时,我得到(除了测试结果)大量调试/日志相关的输出形式: D, [2013-03-06T12:21:38.911829 #49031] DEBUG -- : SOAP r
我正在使用 savon version 2 (使用 Ruby on Rails )调用 web 服务,我需要向我的信封注入(inject)一些额外的命名空间。就像是: 我在 Savon Git pr
我正在使用 Ruby Savon,我必须创建一个请求,其中包含一个数组,该数组中有属性。我的问题是如何在每个子数组中添加一个属性。 JOHN
在 Savon 1 中,我可以使用 soap.input 添加 xmlns,如下所示: soap_client = Savon.client("http://pathtowsdl.com/a.svc?
我可以在 Savon 日志中看到我的 SOAP 错误包含如下 XML: 666some evil error 有谁知道如何从响应中解析错误代码和描述?很抱歉,如果这是一个愚蠢的问题,但我已经尝试了所有
我正在开发一个使用 Savon 在多线程中连接到 SSL 安全 SOAP 服务的应用程序。 要求之一是使用持久的 SSL 连接。 “谷歌搜索”没有给出有意义的结果.. 除了关于 net-http-pe
我是一名优秀的程序员,十分优秀!