HTTPS/Client-authenticated: Difference between revisions

Content added Content deleted
({{omit from|Lotus 123 Macro Scripting}})
(Added PicoLisp)
Line 4: Line 4:


This task is in general useful for use with [[Creating a SOAP Client|webservice client]]s as it offers a high level of assurance that the client is an acceptable counterparty for the server. For example, [http://aws.amazon.com/ Amazon Web Services] uses this style of authentication.
This task is in general useful for use with [[Creating a SOAP Client|webservice client]]s as it offers a high level of assurance that the client is an acceptable counterparty for the server. For example, [http://aws.amazon.com/ Amazon Web Services] uses this style of authentication.

=={{header|PicoLisp}}==
<lang PicoLisp>(in '(curl "-E" "myCert.pem" "https://www.example.com")
(while (line)
(doSomeProcessingWithLine @) ) )</lang>


=={{header|Tcl}}==
=={{header|Tcl}}==