From: brabuhr@... Date: 2007-01-25T23:48:48+09:00 Subject: Re: ssl xml rpc 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.linuxjournal.com/article/4822 request_len=strlen(request); r=SSL_write(ssl,request,request_len); switch(SSL_get_error(ssl,r)){ } http://www-128.ibm.com/developerworks/linux/library/l-openssl.html if(BIO_write(bio, buf, len) <= 0) { }