Sha256: aefa777ea61219bf33a0d1b71c3b77a6cee06283462dfd33c3638c41da5b1130
Contents?: true
Size: 1015 Bytes
Versions: 6
Compression:
Stored size: 1015 Bytes
Contents
Savon [](http://travis-ci.org/rubiii/savon) ===== Heavy metal Ruby SOAP client [Documentation](http://savonrb.com) | [RDoc](http://rubydoc.info/gems/savon) | [Mailing list](https://groups.google.com/forum/#!forum/savonrb) | [Twitter](http://twitter.com/savonrb) Installation ------------ Savon is available through [Rubygems](http://rubygems.org/gems/savon) and can be installed via: ``` $ gem install savon ``` Introduction ------------ ``` ruby require "savon" # create a client for your SOAP service client = Savon::Client.new("http://service.example.com?wsdl") client.wsdl.soap_actions # => [:create_user, :get_user, :get_all_users] # execute a SOAP request to call the "getUser" action response = client.request(:get_user) do soap.body = { :id => 1 } end response.body # => { :get_user_response => { :first_name => "The", :last_name => "Hoff" } } ``` Documentation ------------- Continue reading at [savonrb.com](http://savonrb.com)
Version data entries
6 entries across 6 versions & 3 rubygems
Version | Path |
---|---|
savon-0.9.10 | README.md |
savon-0.9.9 | README.md |
savon-0.9.8 | README.md |
they-savon-0.9.7.1 | README.md |
regenersis-savon-1.0.0 | README.md |
they-savon-0.9.7 | README.md |