Sha256: bfbb69b2c62d8f9d6230f11f907038dc42d5bb777018c5016102a653f58058ae

Contents?: true

Size: 1001 Bytes

Versions: 4

Compression:

Stored size: 1001 Bytes

Contents

Savon [![Build Status](https://secure.travis-ci.org/savonrb/savon.png)](http://travis-ci.org/savonrb/savon)
=====

Heavy metal 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(wsdl: "http://service.example.com?wsdl")

client.operations
# => [:create_user, :get_user, :get_all_users]

# execute a SOAP request to call the "getUser" action
response = client.call(:get_user) do
  message(user_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

4 entries across 4 versions & 1 rubygems

Version Path
savon-2.1.0 README.md
savon-2.0.3 README.md
savon-2.0.2 README.md
savon-2.0.1 README.md