Ruby / Savon:肥皂请求的命名空间有问题

时间:2013-10-01 14:19:42

标签: ruby soap savon

我无法更改我正在构建的SOAP xml的命名空间。我不知道如何将“xmlns:env =”改为“xmlns:soapenv =”和“xmlns:tns =”改为“xmlns:web =”

我正在努力建立:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:web="http://www.webserviceX.NET/">
    <soapenv:Header/>
    <soapenv:Body>
         <web:ConvertTemp>
             <web:Temperature>100</web:Temperature>
             <web:FromUnit>degreeCelsius</web:FromUnit>
             <web:ToUnit>degreeFahrenheit</web:ToUnit>
         </web:ConvertTemp>
    </soapenv:Body>
</soapenv:Envelope>

我目前正在获得

<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tns="http://www.webserviceX.NET/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <env:Body>
      <tns:ConvertTemp>
         <tns:temperature>100</tns:temperature>
         <tns:fromUnit>degreeCelsius</tns:fromUnit>
         <tns:toUnit>degreeFahrenheit</tns:toUnit>
      </tns:ConvertTemp>
   </env:Body>
</env:Envelope>

我的代码:

client = Savon.client(wsdl: "http://www.webservicex.net/ConvertTemperature.asmx?WSDL")
message = { temperature: '100',FromUnit: 'degreeCelsius' , ToUnit: 'degreeFahrenheit'}
response = client.call(:convert_temp, message: message)

感谢您的帮助。

1 个答案:

答案 0 :(得分:18)

我能够弄清楚如何改变这些。如果有人有兴趣改变这些是:

client = Savon.client(env_namespace: :soapenv,namespace_identifier: :web)

但实际上并没有引起我的问​​题。事实证明,在没有注意到的情况下,我的田地变得无人问津。 “FromUnit”变成了“fromUnit”。