2

我正在使用 Savon 开发 Web 服务客户端。由于我是初学者,我决定首先尝试一个示例 WDSL,在我的例子中是:

http://www.webservicex.com/CurrencyConvertor.asmx?wsdl

我的控制器非常简单:

require 'savon'

class WebServiceController < ApplicationController  
  def index
    puts "web_service: IN"    
    client = Savon::Client.new do
      wsdl.document = "http://www.webservicex.com/CurrencyConvertor.asmx?wsdl"
    end

    response = client.request :conversion_rate do
      soap.body = {
        :from_currency => 'USD',
        :to_currency => 'EUR'
      }
    end    
    puts response.to_hash;    
    render :text => response.to_hash    
  end
end

该代码生成的 XML 是:

<env:Envelope   xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
                xmlns:wsdl="http://www.webserviceX.NET/" 
                xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Body>
        <ConversionRate>
            <wsdl:fromCurrency>USD</wsdl:fromCurrency>
            <wsdl:toCurrency>EUR</wsdl:toCurrency>
        </ConversionRate>
    </env:Body>
</env:Envelope>

但是,XML 应该是(我知道这一点是因为我使用的是 soapUI):

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
                    xmlns:web="http://www.webserviceX.NET/">
<soapenv:Header/>
   <soapenv:Body>
      <web:ConversionRate>
         <web:FromCurrency>USD</web:FromCurrency>
         <web:ToCurrency>EUR</web:ToCurrency>
      </web:ConversionRate>
   </soapenv:Body>
</soapenv:Envelope>

我知道我的 XML 请求不起作用,因为我总是得到“0”(零)作为响应,并且使用 soapUI 生成的“正确”XML 请求,我得到了正确的值(例如“0.6959”......)。

我的代码中是否缺少某些内容?

谢谢!!!

4

1 回答 1

1

两件事情:

  1. 您需要在通话中添加 :wsdl
  2. 您需要确保标签的拼写正确

改成

response = client.request :wsdl, :conversion_rate do

"FromCurrency" => 'USD',
"ToCurrency" => 'EUR'

那应该为你做。

于 2011-06-23T17:36:57.703 回答