I am trying to avoid using Nokogiri/Builder
to build my XML and would like to instead use the Savon
gem with Ruby 2.0.0. I have the following request I
The namespace on GetList is correct. What you probably need to write is
soap_client.call(:get_list,
:attributes => {'xmlns:b'=>'http://schemas.datacontract.org/'},
message: { 'ListRequest' => { 'tns:id' => 1 } }
That won't be the exact solution for your problem, because I don't have access to your wsdl and can't test. But you should get the key to a solution.