Savon is currently producing tags like this: <soap:orderid>R211758537</soap:orderid>

How do I get tags like this, without the soap prefix? <orderid>R211758537</orderid>

Here's the code I am using:

endpoint = "http://www.ioperate.net/ws/order/orderws.asmx?wsdl"
response = session.request endpoint, 'OrderUpload' do
  http.headers["SOAPAction"] = "http://chrome52/webservices/OrderUpload" 

  soap.body = {
    :orderid => R211758537
  }
end
link|improve this question
Could you post some more of your code. In particular how you're creating the session object. I can't seem to reproduce the behavior you're seeing. – Jakob S Jul 14 '11 at 21:03
also, please let us know which version of savon you're using. – rubiii Jul 16 '11 at 10:04
I also have a similar problem: question here – Johnny Grass Jul 16 '11 at 22:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.