Einzelnen Beitrag anzeigen

shmia

Registriert seit: 2. Mär 2004
5.508 Beiträge
 
Delphi 5 Professional
 
#3

Re: Proxy Authentifizierung bei TIdHTTP Indy 9

  Alt 3. Mär 2006, 15:25
Ich sehe den Parameter Handled, der muss sicher gesetzt werden:
Delphi-Quellcode:
procedure TForm1.TcpClientProxyAuthorization(Sender: TObject;
  Authentication: TIdAuthentication; var Handled: Boolean);
begin
  Authentication.Username:=InputBox('User','','');
  Authentication.Password:=InputBox('Passw','','');
  Handled := True;
end;
Andreas
  Mit Zitat antworten Zitat