From: brabuhr@... Date: 2007-01-25T23:57:27+09:00 Subject: Re: ssl xml rpc On 1/25/07, brabuhr@gmail.com wrote: > On 1/25/07, David Weldon wrote: > > > What's running on the server, and why isn't it looking at the post data, > > > instead of the HTTP headers? > > > > Man I have no idea; it isn't my server but I have to talk to it. I have > > a solution that involves hacking up the http-access2 code so it doesn't > > dump the header. If anyone has done anything like writing raw data to an > > ssl connection let me know. > > I've not done it in Ruby, but some C examples: http://www.koders.com/ruby/fid5E43597C85CD23E775CC0AD7C6507389969DF8E6.aspx?s=socket s = TCPSocket.new(...) ssl = OpenSSL::SSL::SSLSocket.new(...) ssl.connect ssl.write(...) ssl.gets ssl.close s.close