Access through proxy server
Environment variable
Set HTTP_PROXY. SOAP_USE_PROXY=on is no longer needed.
bash:
$ export HTTP_PROXY=http://myproxyserver:8080 $ ruby client.rb
csh:
$ setenv HTTP_PROXY http://myproxyserver:8080 $ ruby client.rb
When the process is running under the CGI environment (REQUEST_METHOD is checked), HTTP_PROXY is ignored because HTTP_* is used by CGI. Set CGI_HTTP_PROXY instead.
property file
(to be written...)
API
(to be written...)