我正在为连接到特殊数据库yardi的soap服务实现ruby接口。为此,我使用了savon宝石。
许多必需的服务已经实现。但是,yardi中的某些服务需要与给定yardi提供的xds兼容的完整XML作为参数。我在使用这些服务时遇到问题。
从根本上讲,问题是savon更改了接收到的xml并更改了一些字符;例如<
,>
,"
等
这是传递给服务的xml的真实示例:
<YsiTran xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns=""><Charges><Charge><Amount>100.0</Amount><AccountId>49610000</AccountId><ChargeCodeId>rentr</ChargeCodeId><Date>2017-01-23T00:00:00</Date><Notes>Charge with segments</Notes><PersonId>t0001306</PersonId><PostMonth>2017-04-01</PostMonth><PropertyId>385pa</PropertyId><Reference>Internet</Reference><UnitId>B3</UnitId><Segment1>collect</Segment1><Segment2>Technical</Segment2><Segment3>After due date</Segment3><Segment4>NA</Segment4><Segment5>IT</Segment5><Segment6>Owner</Segment6><Segment7>Testing</Segment7><Segment8>Testing</Segment8><Segment9>Employee</Segment9><Segment10>Sigma</Segment10><Segment11>January</Segment11><Segment12>Block 1</Segment12></Charge></Charges></YsiTran>
我非常确定此xml是正确的,因为我已经使用SoapUI对其进行了测试。也就是说,当我使用给定的xml将xml放入SoapUI时,服务会正确响应。
现在,当我将前一个xml放入savon并看到请求时,我注意到xml转换为
<YsiTran xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns=""><Charges><Charge><Amount>100.0</Amount><AccountId>49610000</AccountId><ChargeCodeId>rentr</ChargeCodeId><Date>2017-01-23T00:00:00</Date><Notes>Charge with segments</Notes><PersonId>t0001306</PersonId><PostMonth>2017-04-01</PostMonth><PropertyId>385pa</PropertyId><Reference>Internet</Reference><UnitId>B3</UnitId><Segment1>collect</Segment1><Segment2>Technical</Segment2><Segment3>After due date</Segment3><Segment4>NA</Segment4><Segment5>IT</Segment5><Segment6>Owner</Segment6><Segment7>Testing</Segment7><Segment8>Testing</Segment8><Segment9>Employee</Segment9><Segment10>Sigma</Segment10><Segment11>January</Segment11><Segment12>Block 1</Segment12></Charge></Charges></YsiTran>
正如某人所注意到的,由于我忽略了savon,所以更改了一些符号。
我正在执行这样的请求:
client.call(service_name.intern,
message: { # other parameters
'TransactionXml' => transaction_xml })
client
是savon对象,transaction_xml
是包含xml的红宝石字符串。
有什么提示吗?预先感谢
答案 0 :(得分:1)
如果您有XML消息,但无法将其与Savon的ruby对象一起使用,则可以发送逐字XML,如下所示:
client.call(service_name.intern, xml: "<tag1>values</tag1>")
有关详细信息,请参见文档http://savonrb.com/version2/locals.html