From: Christian Kerth Date: 2007-11-30T01:12:17+09:00 Subject: Webrick Query-String Hey! I have a Webrick Server set up. When i do a GET Request i can access the query string values with: req.query['key'] When i do a POST request (action="/myServlet?view=test") out of a form i can acces the form fields with req.query['field'] but i don't have access to the query string field 'view'. The method req.query_string returns the correct string. Is there a way to access the query string values in both request types in a similar way? What is best practice for accessing values (query and post data) in general? thx -- Posted via http://www.ruby-forum.com/.