Displaying 2 results from an estimated 2 matches for "read_query_param".
Did you mean:
read_query_params
2006 Jan 14
1
BUG: HTTP body content get parsed in PUT call
...test-file.txt
''http://localhost:3000/foobar/put_action?key1=value1''
From action_controller/cgi_ext/raw_post_data_fix.rb, the PUT method is
handled the same way as POST, which would have the content body parsed
for params. So, I made a patch by redefining
CGI::QueryExtension#read_query_params
Note that I have to put the body content into env_table[''RAW_PUT_DATA'']
instead of env_table[''RAW_POST_DATA'']. The latter will have the same
problem.
class CGI #:nodoc:
module QueryExtension
private
def setup_raw_put_data
stdi...
2006 Nov 19
3
Binary PUT requests are failing
Does anyone know why binary PUTs are causing a 500 error in Rails? Non
binary PUTs are working fine. I''m trying to make a WebDAV server. I''ve
tried using both mongrel and webrick.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: