AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Netzwerke Indy TCPClient-Verbindung über Proxy
Thema durchsuchen
Ansicht
Themen-Optionen

Indy TCPClient-Verbindung über Proxy

Ein Thema von hesch21 · begonnen am 29. Aug 2012 · letzter Beitrag vom 25. Apr 2013
 
Benutzerbild von kuba
kuba

Registriert seit: 26. Mai 2006
Ort: Arnsberg
588 Beiträge
 
Delphi 11 Alexandria
 
#3

AW: Indy TCPClient-Verbindung über Proxy

  Alt 25. Apr 2013, 23:01
Ich glaube ICQ kann das ...

Falls es "nur" um die Proxy Authorisierung geht hilft vielleicht dies:

Delphi-Quellcode:
procedure TForm9.IdHTTPProxyAuthorization(Sender: TObject;
  Authentication: TIdAuthentication; var Handled: Boolean);
begin
  // First check for NTLM authentication, as you do not need to
  // set username and password because Indy will automatically
  // handle passing your Windows Domain username and
  // password to the proxy server
  if Authentication is TIdSSPINTLMAuthentication then
  begin
    Handled := True;
    Exit;
  end;

  Authentication.Username := ProxyUsername;
  Authentication.Password := ProxyPassword;
  if (Authentication is TIdDigestAuthentication) then
  begin
    TIdDigestAuthentication(Authentication).Method := TIdHTTP(Sender).Request.Method;
    TIdDigestAuthentication(Authentication).Uri := TIdHTTP(Sender).URL.URI;
  end;
  Handled := True;
end;

procedure TForm9.IdHTTPSelectProxyAuthorization(Sender: TObject;
  var AuthenticationClass: TIdAuthenticationClass; AuthInfo: TIdHeaderList);
begin
  // First check for NTLM authentication
  if (AuthInfo.IndexOf('NTLM') > -1) then
  begin
    AuthenticationClass := TIdSSPINTLMAuthentication;
  end
  // Next check for Basic
  else if (AuthInfo.IndexOf('Basic') > -1) then
  begin
    AuthenticationClass := TIdBasicAuthentication;
  end
  // Then Digest
  else if (AuthInfo.IndexOf('Digest') > 0) then
  begin
    AuthenticationClass := TIdDigestAuthentication
  end;
end;
ProyUsername und ProxyPassword könnte man "hinterlegen" oder "eingeben".

KUBA
Stefan Kubatzki
E=mc2
  Mit Zitat antworten Zitat
 


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:07 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz