Hi, Phil Tomson wrote: > I just tried to run your first wsdl example to connect with google and it > didn't work for me because I'm behind a firewall. You might want to > mention this as a potential problem and offer a quck workaround (I > imagine soap/wsdlDriver has some way to setup a proxy, but I don't know it > right off hand.) Otherwise someone who tries it and has the same problem > might just give up on the rest of your article. Set environment variables like this; $ soap_use_proxy=on http_proxy=http://proxy:8080 ruby wsdlDriver.rb Your shell could expect 'env' at the head. % env soap_use_proxy=on http_proxy=http://proxy:8080 ruby wsdlDriver.rb Regards, // NaHi