I am now using Indy 9 with the TIdHttp control
I get the message 'Error connecting with SSL'
The server works okay when I connect to it from java.
I have created and signed my own certificate
I am wondering whether Java has anything built in, such as valid
development certificates, that Delphi doesn't?
My code is basically:-
IdSSLIOHandlerSocket1.SSLOptions.Method := sslvSSLv2;
HTTP.Request.ContentType := 'application/x-www-form-urlencoded';
with HTTP do begin
try
HTTP.Post('https://www.myserver.com/script', Params,aStream);
...