Einzelnen Beitrag anzeigen

Andreas L.
(Gast)

n/a Beiträge
 
#7

Re: UrlDownloadToFile mit einem Proxy?

  Alt 7. Okt 2009, 16:42
Zitat von AlexII:
Zitat von DeddyH:
Man kann ja Firefox verwenden, aber trotzdem die Proxy-Einstellungen im IE vornehmen . Ansonsten könntest Du noch auf Indy, ICS, Synapse etc. ausweichen.
Mein Programm wird ja nicht nur bei mir laufen, sondern zig mal wo anders... deswegen will ich das so schreiben, dass es sofort läuft. Und wie geht das mit Indy?
Delphi-Quellcode:
uses
  .., IdHTTP;

...

var
  http: TIdHTTP;
  fs: TFileStream;
begin
  fs := Tfilestream.create('zeildatei', fmCreate);
  try
    http := TIdHTTp.Create(nil);
    try
      http.Request.ProxyPassword := '**';
      //etc.
      http.Get('http://domain.de/datei.txt', fs);
    finally
      http.free;
    end;
  finally
    fs.free;
  end;
end;
  Mit Zitat antworten Zitat