Hmm..
über die HTTPOptions:
(Auszug aus nem Source, bei dem ich auch selber machen will)
Delphi-Quellcode:
var
O : TIdHTTPOptions;
...
// Damit wir selber den ErrorCode verarbeiten können.
O := Http.HTTPOptions;
include(O, hoNoProtocolErrorException);
include(O, hoWantProtocolErrorContent);
Http.HTTPOptions := O;
(Verwende D6 mit
Indy 10.6.2.0)