From: "NAKAMURA, Hiroshi" Date: 2004-09-19T09:32:31+09:00 Subject: Re: need advise on connection refuse error. Hi, On Sun, 19 Sep 2004 08:18:53 +0900, nkb wrote: > client.options["client.http.proxy"] = "proxy.mysite.co.uk:8080" It should be: client.options["client.http.proxy"] = "http://proxy.mysite.co.uk:8080" or client.httpproxy = "http://proxy.mysite.co.uk:8080" You need to add "http://" as an uri, at least for now. I tend to think that http-access2 should raise an error when a non-http URII has been specified as a proxy URI. Regards, // NaHi