Hi, On Sat, 18 Sep 2004 23:07:31 +0900, nkb <nkb / pacific.net.sg> 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