From 4cee09e7a82d94df3cb92808a88f68d055903cf8 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 4 Apr 2006 16:31:56 +0000 Subject: [PATCH] Do not convert driver options to strings (closes #4499) [Kent] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4151 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionwebservice/CHANGELOG | 4 ++++ actionwebservice/lib/action_web_service/client/soap_client.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index ffa7f52e2a..92af61c6ff 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,3 +1,7 @@ +*SVN* + +* Do not convert driver options to strings (#4499) + *1.1.0* (March 27th, 2005) * Make ActiveWebService::Struct type reloadable diff --git a/actionwebservice/lib/action_web_service/client/soap_client.rb b/actionwebservice/lib/action_web_service/client/soap_client.rb index c7f3b9d594..047543f95e 100644 --- a/actionwebservice/lib/action_web_service/client/soap_client.rb +++ b/actionwebservice/lib/action_web_service/client/soap_client.rb @@ -50,7 +50,7 @@ module ActionWebService # :nodoc: @soap_action_base ||= URI.parse(endpoint_uri).path @driver = create_soap_rpc_driver(api, endpoint_uri) @driver_options.each do |name, value| - @driver.options[name.to_s] = value.to_s + @driver.options[name.to_s] = value end end