I just read about chaining proxies and i wanted to try it in delphi,
well i played around with indy TIdHttp
component and i couldnt figure out how to do it,
do i need two TIdHttp
components? maybe one sends the request to another?
http1.ProxyParams.ProxyPort := Port1;
http1.ProxyParams.ProxyServer := Server1;
http2.ProxyParams.ProxyPort := Port2;
http2.ProxyParams.ProxyServer := Server2;
I just want to send some simple GET/POST with the chained proxies.
Is that even doable? or are there any other component to help me with this task?
Thank you.