From 4cee09e7a82d94df3cb92808a88f68d055903cf8 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 4 Apr 2006 16:31:56 +0000 Subject: 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/lib/action_web_service/client/soap_client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionwebservice/lib/action_web_service/client') 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 -- cgit v1.2.3