How to consume Asp.net web service in ruby on rails

Guys i m new to Ruby on rails , Task - i m trying to consume a webservice in ruby on rails and this web service is made in asp.net .

my controller code is through which i m trying to consume webservice is

ActionWebService was dropped from Rails back in Rails 2 (about 5 years ago). There are some forks still active:

but it’s mostly unmaintained. You may want another, more active, SOAP library:

You’ll also definitely want to find better documentation, as whatever steered you towards ActionWebService is wildly out-of-date.

–Matt Jones

ActionWebService was dropped from Rails back in Rails 2 (about 5 years ago). There are some forks still active:

https://github.com/datanoise/actionwebservice

but it’s mostly unmaintained. You may want another, more active, SOAP library:

https://www.ruby-toolbox.com/categories/soap

Of those I’ve found savon to be very easy to use (and the relatively recent savon 2 is even better)

Fred

I just did a project that had to work with a .net SOAP API. I used the SAVON gem. There is also a RailsCast from Ryan Bates that shows this in action too. Hope this helps.

Couldn't agree more, when I absolutely must work with SOAP I use Savon.