aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-04-04 16:31:56 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-04-04 16:31:56 +0000
commit4cee09e7a82d94df3cb92808a88f68d055903cf8 (patch)
tree129b7c90b3b2585157194aabe77258d7c8e126eb
parentb818cd921613e41df2685d77949eb9d4fe98680b (diff)
downloadrails-4cee09e7a82d94df3cb92808a88f68d055903cf8.tar.gz
rails-4cee09e7a82d94df3cb92808a88f68d055903cf8.tar.bz2
rails-4cee09e7a82d94df3cb92808a88f68d055903cf8.zip
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
-rw-r--r--actionwebservice/CHANGELOG4
-rw-r--r--actionwebservice/lib/action_web_service/client/soap_client.rb2
2 files changed, 5 insertions, 1 deletions
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