我有一个在代理后面运行的Ruby脚本,需要访问SOAP API。我已经导出了“http_proxy”Unix环境变量,但它没有帮助。我的代理服务器不需要身份验证。
require 'soap/wsdlDriver'
wsdl = "http://www.example.com/service.php?wsdl"
s = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
我继续收到以下错误
/usr/local/lib/ruby/1.8/net/http.rb:560:in `initialize': Operation timed out - connect(2) (Errno::ETIMEDOUT)
使用WSDLDriver时是否可以使用Proxy?有什么指针吗?