i want to give request and get xml response so i'm using savon gem
i am facing problem with savon gem.
i tried version 3 and 2.2
with version 3 i face this problem https://stackoverflow.com/questions/20331827/savon-gem-not-getting-xml-response
with version 2.2 i face error unable to authenticate account
response = client.call(:get_models, message: {username: "xxx", secret: "xxx"})
followed savon doc version 2
how can i solve this or suggest any similar gem to savon
I have personally used Savon on several scenarios. I started with other gems (to connect to web services via SOAP), but I ended up moving to Savon. Before selecting another one, please bear in mind the way Savon responds.
There are other options you can find in RubyGems. One of them is HANDSOAP. The useful search will lead you to many others you can choose from depending on your specific needs.
Now I remember having started with soap4r, whose newest version you can find in GitHub.
Hope that helps,