From: "subsume@..." Date: 2007-05-26T05:15:14+09:00 Subject: Net::HTTP - POST and GET in the same request I have a peculiar problem where I need to submit POST data to a script which has get variables (script.asp?variable=true) But Net:HTTP seems to have gone to great lengths to prevent this. Obviously, its messy and looked down upon but unfortunately I cannot control this. Running tests: body = Net::HTTP.post_form(URI.parse('http://www.server.net/post.php?x=y'), {'A'=>'1','B'=>'2','C' => '3'}) puts body.body --------- Above, the POST variables are the only ones which hit the server. Apparently everything after the '?' is totally ignored. Please help! -- Posted via http://www.ruby-forum.com/.