From: Max Russell Date: 2007-02-08T04:04:11+09:00 Subject: Re: Trying to send a soap message directly at a server Brian Candler wrote: > On Wed, Feb 07, 2007 at 08:54:43PM +0900, Max Russell wrote: >> setting dates and posting etc.) , rather than an individual POST of a >> file. > > It looks easy enough to me: > > require 'net/http' > > doc = < > bar! > > EOS > > res = nil > Net::HTTP.start("rubyforge.org", 80) do |http| > res = http.post('/wibble/wobble', doc) > end > puts res.inspect I'll try that, thanks. RI didn't turn up anything like that example. It has sections on posting form data, but nothing with a simple post. ta -- Posted via http://www.ruby-forum.com/.