- Fix for issues issue #147 and #151 (771194).
-
Fix for issue #146 (98655c).
-
Fix for issue #147 (252670).
-
Fix for issues issue #130 and #134 (4f9847).
-
Fix for issue #135 (c9261d).
-
Moved implementation of
Savon::SOAP::Response#to_array
to a class method atSavon::SOAP::XML.to_array
(05a7d3). -
Fix for issue #131 (4e57b3).
-
Fix for issue #127 (0eb3da).
-
Changed
Savon::WSSE
to be based on a Hash instead of relying on builder (4cebc3).Savon::WSSE
now supports wsse:Timestamp headers (issue #122) by settingSavon::WSSE#timestamp
totrue
:client.request :some_method do wsse.timestamp = true end
or by setting
Savon::WSSE#created_at
orSavon::WSSE#expires_at
:client.request :some_method do wsse.created_at = Time.now wsse.expires_at = Time.now + 60 end
You can also add custom tags to the WSSE header (issue #69):
client.request :some_method do wsse["wsse:Security"]["wsse:UsernameToken"] = { "Organization" => "ACME", "Domain" => "acme.com" } end
-
Update to depend on HTTPI v0.7.5 which comes with a fallback to use Net::HTTP when no other adapter could be required.
-
Loosen dependency on builder. Should be quite stable.
-
Added
Savon::SOAP::XML#env_namespace
(51fa0e) to configure the SOAP envelope namespace. It defaults to :env but can also be set to an empty String for SOAP envelope tags without a namespace. -
Replaced quite a lot of core extensions by moving the Hash to XML translation into a new gem called Gyoku (bac4b4).
-
Fix for issue #107 (1d6eda).
-
Fix for issue #108 (f64400...0aaca2) Thanks fagiani.
-
Replaced
Savon.response_pattern
with a slightly different implementation of theSavon::SOAP::Response#to_array
method (6df6a6). The method now accepts multiple arguments representing the response Hash keys to traverse and returns the result as an Array or an empty Array in case the key is nil or does not exist.response.to_array :get_user_response, :return # => [{ :id => 1, :name => "foo"}, { :id => 2, :name => "bar"}]
- Fix for savon_spec to not send nil to
Savon::SOAP::XML#body
(c34b42).
-
Added
Savon.response_pattern
(0a12fb) to automatically walk deeper into the SOAP response Hash when a pattern (specified as an Array of Regexps and Symbols) matches the response. If for example your response always looks like ".+Response/return" as in:<soapenv:
Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> soapenv:Body <ns2:authenticateResponse xmlns:ns2="http://v1_0.ws.user.example.com"> thing </ns2:authenticateResponse> </soapenv:Body> </soapenv:Envelope>
you could set the response pattern to:
Savon.configure do |config|
config.response_pattern = [/.+_response/, :return]
end
then instead of calling:
response.to_hash[:authenticate_response][:return] # :some => "thing"
to get the actual content, Savon::SOAP::Response#to_hash will try to apply given the pattern:
response.to_hash # :some => "thing"
Please notice, that if you don't specify a response pattern or if the pattern doesn't match the response, Savon will behave like it always did.
- Added
Savon::SOAP::Response#to_array
(which also uses the response pattern).
-
Changed
Savon::Client.new
to accept a block instead of multiple Hash arguments. You can access the wsdl, http and wsse objects inside the block to configure your client for a particular service.# Instantiating a client to work with a WSDL document client = Savon::Client.new do wsdl.document = "http://example.com?wsdl" end # Directly accessing the SOAP endpoint client = Savon::Client.new do wsdl.endpoint = "http://example.com" wsdl.namespace = "http://v1.example.com" end
-
Fix for issue #77, which means you can now use local WSDL documents:
client = Savon::Client.new do wsdl.document = "../wsdl/service.xml" end
-
Changed the way SOAP requests are being dispatched. Instead of using method_missing, you now use the new
request
method, which also accepts a block for you to access the wsdl, http, wsse and soap object. Please notice, that a new soap object is created for every request. So you can only access it inside this block.# A simple request to an :authenticate method client.request :authenticate do soap.body = { :id => 1 } end
-
The new
Savon::Client#request
method fixes issues #37, #61 and #64, which report problems with namespacing the SOAP input tag and attaching attributes to it. Some usage examples:client.request :get_user # Input tag: <getUser> client.request :wsdl, "GetUser" # Input tag: <wsdl:GetUser> client.request :get_user :active => true # Input tag: <getUser active="true">
-
Savon's new
request
method respects the given namespace. If you don't give it a namespace, Savon will set the target namespace to "xmlns:wsdl". But if you do specify a namespace, it will be set to the given Symbol. -
Refactored Savon to use the new HTTPI gem.
HTTPI::Request
replaces theSavon::Request
, so please make sure to have a look at the HTTPI library and let me know about any problems. Using HTTPI actually fixes the following two issues. -
Savon now adds both "xmlns:xsd" and "xmlns:xsi" namespaces for you. Thanks Averell. It also properly serializes nil values as xsi:nil = "true".
-
Fix for issue #24. Instead of Net/HTTP, Savon now uses HTTPI to execute HTTP requests. HTTPI defaults to use HTTPClient which supports HTTP digest authentication.
-
Fix for issue #76. You now have to explicitly specify whether to use a WSDL document, when instantiating a client.
-
Fix for issue #75. Both
Savon::SOAP::Fault
andSavon::HTTP::Error
now contain theHTTPI::Response
. They also inherit fromSavon::Error
, making it easier to rescue both at the same time. -
Fix for issue #87. Thanks to Leonardo Borges.
-
Fix for issue #81. Replaced
Savon::WSDL::Document#to_s
with ato_xml
method. -
Fix for issue #80.
-
Fix for issue #60.
-
Fix for issue #96.
-
Removed global WSSE credentials. Authentication needs to be set up for each client instance.
-
Started to remove quite a few core extensions.
- Fix for issue #53.
- Fixed gemspec to include missing files in the gem.
-
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 lets you specify a SOAP endpoint per client instance:client = Savon::Client.new "http://example.com/UserService?wsdl", :soap_endpoint => "http://localhost/UserService"
-
Fix for issue #50. Savon still escapes special characters in SOAP request Hash values, but you can now append an exclamation mark to Hash keys specifying that it's value should not be escaped.
-
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 existing methods. Fix for issue #48. -
Add support for specifying attributes for duplicate tags (via Hash values as Arrays). Fix for issue #45.
-
Fix for issue #41.
-
Fix for issues #39 and #49. Added
Savon::SOAP#xml
which let's you specify completely custom SOAP request XML.
-
Fix for issue #34.
-
Fix for issue #36.
-
Added feature requested in issue #35.
-
Changed the key for specifying the order of tags from :@inorder to :order!
- Fix for issue #33.
-
Added support for Geotrust-style WSDL documents (Julian Kornberger [email protected]).
-
Make HTTP requests include path and query only. This was breaking requests via proxy as scheme and host were repeated (Adrian Mugnolo [email protected])
-
Avoid warning on 1.8.7 and 1.9.1 (Adrian Mugnolo [email protected]).
-
Fix for issue #29. Default to UTC to xs:dateTime value for WSSE authentication.
-
Fix for issue #28.
-
Fix for issue #27. The Content-Type now defaults to UTF-8.
-
Modification to allow assignment of an Array with an input name and an optional Hash of values to soap.input. Patches issue #30 (stanleydrew [email protected]).
-
Fix for issue #25.
-
Exposed the
Net::HTTP
response (added by Kevin Ingolfsland). Use thehttp
accessor (response.http
) on yourSavon::Response
to access theNet::HTTP
response object. -
Fix for issue #21.
-
Fix for issue #22.
-
Fix for issue #19.
-
Added support for global header and namespaces. See issue #9.
- The Hash of HTTP headers for SOAP calls is now public via
Savon::Request#headers
. Patch for issue #8.
This version comes with several changes to the public API! Pay attention to the following list and read the updated Wiki: http://wiki.github.com/rubiii/savon
-
Changed how
Savon::WSDL
can be disabled. Instead of disabling the WSDL globally/per request via two different methods, you now simply append an exclamation mark (!) to your SOAP call:client.get_all_users!
Make sure you know what you're doing because when the WSDL is disabled, Savon does not know about which SOAP actions are valid and just dispatches everything. -
The
Net::HTTP
object used bySavon::Request
to retrieve WSDL documents and execute SOAP calls is now public. While this makes the library even more flexible, it also comes with two major changes:-
SSL client authentication needs to be defined directly on the
Net::HTTP
object:client.request.http.client_cert = ...
I added a shortcut method for setting all options through a Hash similar to the previous implementation:
client.request.http.ssl_client_auth :client_cert => ...
-
Open and read timeouts also need to be set on the
Net::HTTP
object:client.request.http.open_timeout = 30 client.request.http.read_timeout = 30
-
Please refer to the
Net::HTTP
documentation for more details: http://www.ruby-doc.org/stdlib/libdoc/net/http/rdoc/index.html
-
-
Thanks to JulianMorrison, Savon now supports HTTP basic authentication:
client.request.http.basic_auth "username", "password"
-
Julian also added a way to explicitly specify the order of Hash keys and values, so you should now be able to work with services requiring a specific order of input parameters while still using Hash input.
client.find_user { |soap| soap.body = { :name => "Lucy", :id => 666, :@inorder => [:id, :name] } }
-
Savon::Response#to_hash
now returns the content inside of "soapenv:Body" instead of trying to go one level deeper and return it's content. The previous implementation only worked when the "soapenv:Body" element contained a single child. See issue #17. -
Added
Savon::SOAP#namespace
as a shortcut for setting the "xmlns:wsdl" namespace.soap.namespace = "http://example.com"
-
Improved specifications for various kinds of WSDL documents.
-
Added support for SOAP endpoints which are different than the WSDL endpoint of a service.
-
Changed how SOAP actions and inputs are retrieved from the WSDL documents. This might break a few existing implementations, but makes Savon work well with even more services. If this change breaks your implementation, please take a look at the
action
andinput
methods of theSavon::SOAP
object. One specific problem I know of is working with the createsend WSDL and its namespaced actions.To make it work, call the SOAP action without namespace and specify the input manually:
client.get_api_key { |soap| soap.input = "User.GetApiKey" }
-
Implemented support for a proxy server. The proxy URI can be set through an optional Hash of options passed to instantiating
Savon::Client
(Dave Woodward [email protected]) -
Implemented support for SSL client authentication. Settings can be set through an optional Hash of arguments passed to instantiating
Savon::Client
(colonhyphenp) -
Patch for issue #10.
- Default to use the name of the SOAP action (the method called in a client) in lowerCamelCase for SOAP action and input when Savon::WSDL is disabled. You still need to specify soap.action and maybe soap.input in case your SOAP actions are named any different.
- Added an
open_timeout
method toSavon::Request
.
-
Refactored specs to be less unit-like.
-
Added a getter for the
Savon::Request
toSavon::Client
and aread_timeout
setter for HTTP requests. -
wsdl.soap_actions
now returns an Array of SOAP actions. For the previous "mapping" please usewsdl.operations
. -
Replaced WSDL document with stream parsing.
Benchmarks (1000 SOAP calls):
user system total real
0.6.4 72.180000 8.280000 80.460000 (750.799011) 0.6.3 192.900000 19.630000 212.530000 (914.031865)
-
Removing 2 ruby deprecation warnings for parenthesized arguments. (Dave Woodward [email protected])
-
Added global and per request options for disabling
Savon::WSDL
.Benchmarks (1000 SOAP calls):
user system total real
WSDL 192.900000 19.630000 212.530000 (914.031865) disabled WSDL 5.680000 1.340000 7.020000 (298.265318)
-
Improved XPath expressions for parsing the WSDL document.
Benchmarks (1000 SOAP calls):
user system total real
0.6.3 192.900000 19.630000 212.530000 (914.031865) 0.6.2 574.720000 78.380000 653.100000 (1387.778539)
-
Added support for changing the name of the SOAP input node.
-
Added a CHANGELOG.
- Fixed a problem with WSSE credentials, where every request contained a WSSE authentication header.
-
method_missing
now yields the SOAP and WSSE objects to a given block. -
The response_process (which previously was a block passed to method_missing) was replaced by
Savon::Response
. -
Improved SOAP action handling (another problem that came up with issue #1).
- Patch for issue #2.
- Patch for issue #1.
-
Optimized default response process.
-
Added WSSE settings via defaults.
-
Added SOAP fault and HTTP error handling.
-
Improved documentation
-
Added specs
- Complete rewrite and public release.