indy10 Questions
2
Solved
I am using TIdSSLIOHandlerSocketOpenSSL to open a TLS/SSL connection. I currently want to support tls 1.0 to 1.2.
I initialize the IOHandler like this.
TIdSSLIOHandlerSocketOpenSSL(FSocket.IOHand...
2
Can Indy 10 be used with Delphi 7?
I am trying to find it, or purchase it. But, I cannot find any information on it.
I found where to download it, though:
http://indy.fulgan.com/ZIP/
Their website,...
4
Solved
0
I get this error when I try to download a file using TIdHTTP component:
First chance exception at $76D8AAF2. Exception class EIdOSSLUnderlyingCryptoError with message
'Error connecting with SSL.
er...
Scholz asked 5/11, 2020 at 10:46
1
For years, we've been using Indy 10 to send emails (text, not HTML) with one or more PDF attached to it and we never had any problem.
Recently (maybe since Tokyo release 3 ?), our customers notice...
Welkin asked 18/9, 2018 at 14:41
3
Solved
I am using Indy IDFTP to make a directory. I need to find a reliable way to determine if a directory exists and if it does not exist, to call MakeDir. I have tried the following code but an excepti...
Minier asked 15/1, 2015 at 0:50
3
Solved
I'm starting to play with FreePascal/Lazarus and there appears to be an Indy port available. Is this a recent port and is it stable enough to use in production use? (Standard HTTP post/get client t...
Gatias asked 15/12, 2010 at 14:41
1
Solved
I am using Delphi 10.2 Tokyo, trying to download some information from a web server.
I pass the command URL https://poloniex.com/public?command=returnCurrencies through this function using Indy 10...
Francisco asked 26/2, 2018 at 8:50
7
Solved
My Server-App uses a TIdTCPServer, several Client apps use TIdTCPClients to connect to the server (all computers are in the same LAN).
Some of the clients only need to contact the server every co...
Semiliterate asked 17/2, 2011 at 16:33
5
Solved
I'm trying to upload files to a Indy(ver. 10.5.5) TIdHTTPServer.
I've been searching for solutions but no luck thus far, what I've found was for older versions of Indy which were not compatible wit...
Mckelvey asked 31/5, 2011 at 17:44
1
The following code successfully sends an e-mail using Google's Gmail servers, but only after lowering the Google account security settings to "Allow less secure apps."
The code offered below (orig...
3
Solved
I'm trying to access an update.txt file on my website, using a DelphiXE compiled program and the IdHTTP component.
The code I'm using is as follows:
procedure TFormAbout.SpeedButtonUpdateClick(Se...
1
Solved
I'm using Delphi XE 6 and TIdHttp component(Indy 10.6.0.5122) and trying to consume a SOAP service - http://www.webservicex.net/globalweather.asmx over a http proxy (CCProxy - http://www.youngzsoft...
Haematogenous asked 18/11, 2014 at 12:31
1
Solved
I use the following code to setup SSLHandler for POP3/SMTP sending/receiving app:
IdSSLHandler->SSLOptions->Mode = sslmClient;
IdSSLHandler->SSLOptions->Method = slvSSLv23;
IdSSLHandle...
3
Solved
I have a small piece of code that checks if a computer is alive by pinging it. We use to have a room with 40 computer and I wanna check remotely through my program which on is alive.
Therefore I w...
1
Solved
I'm trying to post a request, in utf-8 however the server is getting it in Ascii.
Tried the TstringList format of post.
Tried the stream format
Tried forcing the TStringStream to have UTF8 encod...
Agnella asked 10/11, 2013 at 17:5
2
Solved
I am having the same problem as mentioned in "Delphi XE4 Indy compatibility issue between TBytes and TidBytes ", i.e. compatibility issues between TBytes(Delphi RTL) and TIdBytes(Indy) datatypes wh...
1
Solved
Sorry if my question is silly!
I'm using Delphi XE4 and now I'm working on IdTelnet. But I got a problem with OnDataAvailable event. Take a look at this picture:
So I cannot work with OnDataAvaila...
Logos asked 27/8, 2013 at 11:26
1
Solved
In my email checker, I support both POP3 SSL and IMAP SSL. While Pop3 SSL using SASL has been working for some time, I never got IMAP SSL using SASL to work, even though the code for SASL should be...
1
Solved
2
Solved
I have recently upgraded my Delphi 7 to Delphi XE2 and I'm kinda new to it. I used Indy 10 with OpenSSL to receive HTTP Content. It works just fine and I would like to share my program with with ot...
Peppery asked 3/5, 2013 at 21:32
1
Solved
I use this code to download small files:
Var
ms:TMemoryStream;
begin
ms:=TMemoryStream.Create;
Idhttp1.get('http://mydomain.com/myfile.zip',ms);
ms.SaveToFile('myfile.zip');
ms.Free;
end;
...
Joyner asked 13/3, 2013 at 11:16
1
Solved
With the following code I can get the content of an IPv4 website:
uses
IdHttp;
IdHttp1 := TIdHttp.Create(nil);
try
Result := IdHttp1.Get('http://www.heise.de/')
finally
IdHttp1.Free;
end;
b...
1
Solved
I'm trying to communicate with a LAN (http://) server that needs digest authentication.
uses IdHttp, IdAuthenticationDigest;
...
begin
IdHttp1 := TIdHttp.Create(nil);
try
IdHttp1.Request.User...
1
Solved
I've a problem receiving a favicon.ico from a specific web server using Delphi and Indy 9/10. Other servers do work fine. The problem is not with this web server, as wget command line utility gets ...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.