0

有没有使用 SOAP4R 的 WSDL Parser 示例?我正在尝试列出 WSDL 文件的所有操作,但我无法弄清楚:(你能给我发一些教程吗?谢谢

4

1 回答 1

4

也许这不是您想要的答案,但我建议您切换到Savon。例如,您的任务看起来像这个片段(这个例子取自 github 的 savon 页面):

require "savon"

# create a client for your SOAP service
client = Savon::Client.new("http://service.example.com?wsdl")

client.wsdl.soap_actions
# => [:create_user, :get_user, :get_all_users]

# execute a SOAP request to call the "getUser" action
response = client.request(:get_user) do
  soap.body = { :id => 1 }
end

response.body
# => { :get_user_response => { :first_name => "The", :last_name => "Hoff" } }
于 2011-10-22T17:58:17.020 回答