From: Greg Lazarev Date: 2008-06-05T02:23:08+09:00 Subject: Re: Ruby SOAP Bug? So I think I might have figured out what the problem is. I looked at the soap4r's httpconfigloader.rb and it handles set_basic_auth different then ruby's soap/httpconfigloader.rb. I'm guessing the "bug" is really only in the ruby's version. I have the soap4r gem installed but I am not using it for some reason. What is the difference between the ruby's soap and soap4r? They seem quite similar. Am I suppose to require something to use the soap4r's version of the code? Here's my simple app, by the way: require 'soap/wsdlDriver' wsdl = 'https://server/path/to/file.wsdl' soap = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver And here's the soap/property file: client.protocol.http.basic_auth.1.url = https://server/path/to/file.wsdl client.protocol.http.basic_auth.1.userid = username client.protocol.http.basic_auth.1.password = password client.protocol.http.ssl_config.verify_mode=OpenSSL::SSL::VERIFY_NONE -- Posted via http://www.ruby-forum.com/.