How to download a file with progress with IdHTTP via https
I'm trying to download a file using indy10 http components TIdHttp while getting the progress , I have just setted the libraries in the application folder while using the code for http URL it works and progress but with https it simply does nothing and it doesn't raises any exception :/ with TIdHTTP.Create(nil) do begin IOHndl:=TIdSSLIOHandlerSocketOpenSSL.Create(nil); Request.BasicAuthentication:=True; HandleRedirects:=True; IOHandler:=IOHndl; OnWork:=FOnWork; OnWorkBegin:=FOnWorkBegin; OnWorkEnd:=FOnWorkEnd; Get(FUrl,FStream); end; Best Regards First you have to create a small class to wrap