HTTPS: Difference between revisions

354 bytes added ,  12 years ago
Added Ada
No edit summary
(Added Ada)
Line 4:
 
Readers may wish to contrast with the [[HTTP Request]] task, and also the task on [[HTTPS request with authentication]].
 
=={{header|Ada}}==
{{libheader|AWS}}
Exactly the same as the HTTP task, assuming you compiled AWS with openssl support.
<lang ada>
with AWS.Client;
with AWS.Response;
with Ada.Text_IO; use Ada.Text_IO;
procedure GetHttps is
begin
Put_Line (AWS.Response.Message_Body (AWS.Client.Get (
URL => "https://sourceforge.net/")));
end GetHttps;
</lang>
 
=={{header|AutoHotkey}}==
Anonymous user