Action Web Service Gem
hi i am using 'actionwebservice' for passing SOAP requests. Version 2.3.2 for actionwebservice is " datanoise-actionwebservice" For installing the gem when i used, gem install datanoise-actionwebservice got this error, ERROR: could not find gem datanoise-actionwebservice locally or in a repository & found this is the right way to install gem install datanoise-actionwebservice --source http://gems.github.com Add this line to your config/environment.rb file in the initializer section: config.gem 'datanoise-actionwebservice', :lib => 'actionwebservice' Generating API controller ActionWebService gem includes web_service generator that you can use like this: $ ./script/generate web_service post Define your API Open app/services/post_api.rb file and add methods that your service exposes: class PostApi [[:string]] end API implementation We are going to use direct dispatching mode, so all methods that implement our API go di...