aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib/active_resource
diff options
context:
space:
mode:
authorTobias Lütke <tobias.luetke@gmail.com>2007-06-19 18:40:28 +0000
committerTobias Lütke <tobias.luetke@gmail.com>2007-06-19 18:40:28 +0000
commitbf280157d9c92637a3a270510b2ff67be27a302e (patch)
tree3443b5f3accd0b82acfc48f135a20660c5a4a6fc /activeresource/lib/active_resource
parent6af2cbca07821e66cc358a4105a54c78f1dde19b (diff)
downloadrails-bf280157d9c92637a3a270510b2ff67be27a302e.tar.gz
rails-bf280157d9c92637a3a270510b2ff67be27a302e.tar.bz2
rails-bf280157d9c92637a3a270510b2ff67be27a302e.zip
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
Diffstat (limited to 'activeresource/lib/active_resource')
-rw-r--r--activeresource/lib/active_resource/connection.rb4
-rw-r--r--activeresource/lib/active_resource/custom_methods.rb8
2 files changed, 6 insertions, 6 deletions
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