The title says it all really. Using version 40 of synapse

I need to use TLS 1.1 or 1.2 to connect.

What I'm doing is

News.TargetPort := '563';
News.AutoTLS := AutoTLS.Checked;
News.FullSSL := FullSSL.Checked;
News.TargetHost := trim(mo.lines[0]);
News.Username := trim(mo.lines[1]);
News.Password := trim(mo.lines[2]);
if News.Login then showmessage('yippee') else showmessage(
'Sock: ' + news.Sock.LastErrorDesc
+ #13 +
'SSL: ' + news.Sock.SSL.LastErrorDesc
+ ' - ' + IntToSTr(news.Sock.SSL.LastError));


If I set FullSSL := True and AutoTLS := False I get

---------------------------
Project1
---------------------------
Sock: Network subsystem is unusable
SSL: - 0
---------------------------
OK
---------------------------

FullSSL := False and AutoTLS := True I get

---------------------------
Project1
---------------------------
Sock: Connection reset by peer
SSL: - 0
---------------------------
OK
---------------------------


Roy Lambert

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
synalist-public mailing list
synalist-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/synalist-public

Reply via email to