| Message: 18299 |
 |
BY: cal cal (cal) DATE: 2007-02-21 14:03 SUBJECT: RE: rubysspi and soap4r Hi again Justin.
I've got things working, albeit in a less-than-ideal way. In case you or anyone else is interested, I modified the I hard-coded the soap4r netHttpClient.rb file (a wrapper for net/http). There appears to be proxy support built into the logic, but I forced it (on about line 142) like this:
http = Net::HTTP::Proxy("MY_PROXY_HOSTNAME", MY_PROXY_PORT).new(url.host, url.port)
and I also added the line:
require 'rubysspi/proxy_auth'
just below the initial require 'net/http' at the beginning of the file.
Some day, when I need to access SOAP services inside my firewall, I may need to come back to this, but so far so good.
Thanks for your advice!
-cal
| |