{"id":13433364,"url":"https://github.com/savonrb/savon","last_synced_at":"2026-05-21T20:01:25.369Z","repository":{"id":604959,"uuid":"241560","full_name":"savonrb/savon","owner":"savonrb","description":"Heavy metal SOAP client","archived":false,"fork":false,"pushed_at":"2025-04-06T19:59:46.000Z","size":2997,"stargazers_count":2071,"open_issues_count":20,"forks_count":614,"subscribers_count":43,"default_branch":"main","last_synced_at":"2025-04-30T07:05:00.282Z","etag":null,"topics":["ruby","soap","soap-client"],"latest_commit_sha":null,"homepage":"https://www.savonrb.com","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/savonrb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2009-07-02T13:19:34.000Z","updated_at":"2025-04-23T16:02:16.000Z","dependencies_parsed_at":"2023-07-09T00:16:10.312Z","dependency_job_id":"ab72d905-a2a3-4e8a-a75a-9285879e1a0b","html_url":"https://github.com/savonrb/savon","commit_stats":{"total_commits":1524,"total_committers":128,"mean_commits":11.90625,"dds":"0.22572178477690286","last_synced_commit":"9cae9232c5694ea26ac82b18509336d1c1d7ed51"},"previous_names":[],"tags_count":72,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savonrb%2Fsavon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savonrb%2Fsavon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savonrb%2Fsavon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/savonrb%2Fsavon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/savonrb","download_url":"https://codeload.github.com/savonrb/savon/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251717335,"owners_count":21632277,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ruby","soap","soap-client"],"created_at":"2024-07-31T02:01:24.730Z","updated_at":"2026-05-21T20:01:25.361Z","avatar_url":"https://github.com/savonrb.png","language":"Ruby","funding_links":[],"categories":["Ruby","Web Apps, Services \u0026 Interaction","HTTP","Gems","HTTP Clients and tools"],"sub_categories":["SOAP Clients","API"],"readme":"# Savon\n\nHeavy metal SOAP client\n\n[Documentation](https://www.rubydoc.info/gems/savon/) | [Support](https://stackoverflow.com/questions/tagged/savon) |\n[Mailing list](https://groups.google.com/forum/#!forum/savonrb)\n\n[![Ruby](https://github.com/savonrb/savon/actions/workflows/ci.yml/badge.svg)](https://github.com/savonrb/savon/actions/workflows/ci.yml)\n[![Gem Version](https://badge.fury.io/rb/savon.svg)](http://badge.fury.io/rb/savon)\n[![Coverage Status](https://coveralls.io/repos/savonrb/savon/badge.svg)](https://coveralls.io/r/savonrb/savon)\n\nIf you're reading this on GitHub, note that this README is for the main branch and that features/changes described here might not correspond to your version. You can find the documentation for your release [at rubydoc.info](https://www.rubydoc.info/find/gems?q=savon).\n\n## Installation\n\nSavon is available through [Rubygems](http://rubygems.org/gems/savon) and can be installed via:\n\n```\n$ gem install savon\n```\n\nor add it to your Gemfile like this:\n\n```\ngem 'savon', '~\u003e 3.0.0'\n```\n\n## Usage example\n\n``` ruby\nrequire 'savon'\n\n# create a client for the service\nclient = Savon.client(wsdl: 'http://service.example.com?wsdl')\n\n# or: create a client with a wsdl provided as a string\nclient = Savon.client do |config|\n  wsdl_content = File.read(\"/path/to/wsdl\")\n  config.wsdl wsdl_content\nend\n\nclient.operations\n# =\u003e [:find_user, :list_users]\n\n# call the 'findUser' operation\nresponse = client.call(:find_user, message: { id: 42 })\n\nresponse.body\n# =\u003e { find_user_response: { id: 42, name: 'Hoff' } }\n```\n\nFor more examples, you should check out the\n[integration tests](https://github.com/savonrb/savon/tree/version2/spec/integration).\n\n## Upgrading from v2.x to v3.x\n\nSee [UPGRADING.md](UPGRADING.md) for more information.\n\n## Ruby version support\n\nEvery savon release is tested with contemporary supported versions of ruby. Historical compatibility information:\n\n* `main` - same support as Ruby\n* 2.15.x - MRI 3.0, 3.1, 3.2, 3.3\n* 2.13.x, 2.14.x - MRI 2.7, 3.0, 3.1\n* 2.12.x - MRI 2.2, 2.3, 2.4, 2.5\n* 2.11.x - MRI 2.0, 2.1, 2.2, and 2.3\n\nIf you are running MRI 1.8.7, try a 2.6.x release.\n\nMost changes are not backported to older versions of savon, or unsupported ruby versions.\n\n## Running tests\n\n```bash\n$ bundle install\n$ bundle exec rspec\n```\n\n## FAQ\n\n* URI::InvalidURIError -- if you see this error, then it is likely that the http client you are using cannot parse the URI for your WSDL. Try `gem install httpclient` or add it to your `Gemfile`.\n  - See https://github.com/savonrb/savon/issues/488 for more info\n\n\n## Documentation\n\nPlease be sure to [read the documentation](https://www.rubydoc.info/github/savonrb/savon/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsavonrb%2Fsavon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsavonrb%2Fsavon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsavonrb%2Fsavon/lists"}