Reputation: 2582
Which set of libraries and tools would you recommend to use for development SOAP-service on Ruby 1.9 - soap-tools, web-servers, or maybe a web-framework?
Upvotes: 2
Views: 843
Reputation: 3773
I have researched this myself. As far as I can tell, there is just one current implementation: wash_out
It is a very nice to do SOAP in Rails. It does the most basic stuff but it isn't a complete SOAP implementation. I think you are in for a world of hurt if you are building a SOAP service on Rails.
Soap Ui is a pretty good way to test/debug/etc.
Good luck!
Upvotes: 2
Reputation: 1193
Take a look at http://aws.rubyonrails.org/, when it's explained how to create web services within RubyOnRails.
Upvotes: 1
Reputation: 15136
SOAP doesn't seem to be popular in Ruby land. The only library for creating services I know of is SOAP4R (which comes bundled with Ruby), and the documentation for it isn't very detailed.
Upvotes: 1