- Create a IdHTTPProxyServer
- Set port to 8080
- Active := True
- Set IE Proxy to 127.0.0.1:8080
When typing in to google search the requests aren't going through IdHTTPProxyServer. Why is that?
Also why is it not possible to monitor https urls? I can only see normal http?
procedure TManager.OnHTTPBeforeCommand(AContext: TIdHTTPProxyServerContext);
var
URL : String;
begin
URL := AContext.Target; // << will only be http://
end;
When typing in to google search the requests aren't going through IdHTTPProxyServer. Why is that?
Also why is it not possible to monitor https urls? I can only see normal http?