From: "NAKAMURA, Hiroshi" Date: 2004-09-18T23:19:55+09:00 Subject: Re: Soap4R how to set up user name? Hi, On Sat, 18 Sep 2004 23:07:31 +0900, nkb wrote: > basic authentication. > Is there any example on using soap4r with basic auth and do a POST via > https? Check test/soap/test_streamhandler.rb in a ruby distribution. Or, http://www.ruby-lang.org/cgi-bin/cvsweb.cgi/ruby/test/soap/test_streamhandler.rb You need to have http-access2. @client = SOAP::RPC::Driver.new(...) @client.options["protocol.http.basic_auth"] << ["https://www.example.com/somewhere/, "user", "passwd"] Regards, // NaHi