Skip to content

Commit

Permalink
documented features and fixes for the next version
Browse files Browse the repository at this point in the history
  • Loading branch information
rubiii committed May 8, 2010
1 parent c5a0fb2 commit 2787878
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
== UPCOMING
* SOAP requests now start with a proper XML declaration.
* Added support for gzipped requests and responses (http://github.com/lucascs). While gzipped SOAP
responses are decoded automatically, you have to manually instruct Savon to gzip SOAP requests:

client = Savon::Client.new "http://example.com/UserService?wsdl", :gzip => true

* Fix for issue #51: added the :soap_endpoint option to Savon::Client.new which let's you specify a SOAP
endpoint per client instance.

== 0.7.6 (2010-03-21)
* Renamed
* Moved documentation from the Github Wiki to the actual class files and established a much nicer
documentation combining examples and implementation (using Hanna) at: http://savon.rubiii.com
* Added Savon::Client#call as a workaround for dispatching calls to SOAP actions named after
Expand Down Expand Up @@ -153,4 +162,3 @@

== 0.5.0 (2009-11-29)
* Complete rewrite.

6 changes: 6 additions & 0 deletions lib/savon/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ module Savon
#
# client = Savon::Client.new "http://example.com/UserService?wsdl", :soap_endpoint => "http://localhost/UserService"
#
# == Gzipped SOAP requests
#
# Sending gzipped SOAP requests can be specified per client instance.
#
# client = Savon::Client.new "http://example.com/UserService?wsdl", :gzip => true
#
# == Savon::WSDL
#
# You can access Savon::WSDL via:
Expand Down

0 comments on commit 2787878

Please sign in to comment.