Procedure Connect(URL: WideString);
begin
http := TidHTTP.Create(nil);
http.ProxyParams.ProxyPassword := wsProxyPW;
http.ProxyParams.ProxyUsername := wsProxyUN;
http.ProxyParams.ProxyServer := wsProxyServer;
http.ProxyParams.ProxyPort := iProxyPort;
http.Get(URL, msFile);
end;
Is there something else I should do to allow proxy support?