From bf280157d9c92637a3a270510b2ff67be27a302e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20L=C3=BCtke?= Date: Tue, 19 Jun 2007 18:40:28 +0000 Subject: Ensure that post and put requests pass in Content-Length to the server. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7064 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activeresource/lib/active_resource/connection.rb | 4 ++-- activeresource/lib/active_resource/custom_methods.rb | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'activeresource/lib/active_resource') diff --git a/activeresource/lib/active_resource/connection.rb b/activeresource/lib/active_resource/connection.rb index ef4d92451c..d41171270c 100644 --- a/activeresource/lib/active_resource/connection.rb +++ b/activeresource/lib/active_resource/connection.rb @@ -71,13 +71,13 @@ module ActiveResource # Execute a PUT request (see HTTP protocol documentation if unfamiliar). # Used to update resources. def put(path, body = '', headers = {}) - request(:put, path, body, build_request_headers(headers)) + request(:put, path, body.to_s, build_request_headers(headers)) end # Execute a POST request. # Used to create new resources. def post(path, body = '', headers = {}) - request(:post, path, body, build_request_headers(headers)) + request(:post, path, body.to_s, build_request_headers(headers)) end def xml_from_response(response) diff --git a/activeresource/lib/active_resource/custom_methods.rb b/activeresource/lib/active_resource/custom_methods.rb index ce32dc111d..2e382cdd7e 100644 --- a/activeresource/lib/active_resource/custom_methods.rb +++ b/activeresource/lib/active_resource/custom_methods.rb @@ -39,11 +39,11 @@ module ActiveResource connection.get(custom_method_collection_url(method_name, options), headers) end - def post(method_name, options = {}, body = nil) + def post(method_name, options = {}, body = '') connection.post(custom_method_collection_url(method_name, options), body, headers) end - def put(method_name, options = {}, body = nil) + def put(method_name, options = {}, body = '') connection.put(custom_method_collection_url(method_name, options), body, headers) end @@ -74,7 +74,7 @@ module ActiveResource connection.get(custom_method_element_url(method_name, options), self.class.headers) end - def post(method_name, options = {}, body = nil) + def post(method_name, options = {}, body = '') if new? connection.post(custom_method_new_element_url(method_name, options), (body.nil? ? to_xml : body), self.class.headers) else @@ -82,7 +82,7 @@ module ActiveResource end end - def put(method_name, options = {}, body = nil) + def put(method_name, options = {}, body = '') connection.put(custom_method_element_url(method_name, options), body, self.class.headers) end -- cgit v1.2.3