Re: How do I read HTTP POST XML sent to CGI?



well... i only followed the instruction. trying to see if those
parameters came in


#!/usr/local/bin/ruby
require "cgi"



cgi = CGI.new

h = cgi.params
puts h['URL']
puts h['VALUE']

puts cgi['PARAMETER']

--
Posted via http://www.ruby-forum.com/.

.