Is anyone aware of any alternatives to curl and wget? The key functional requirement I'm looking for is to be able to execute an HTTPS GET request against a known URL.
The reason I'm looking for an alternative is simply that I'm trying to execute a connectivity test from a server which currently doesn't have wget or curl installed. The server concerned is under strict change control and so installing new software on it is a no-no.
The operating system installed on the server is AIX.
[Pushing up from comments]
Two options:
openssl s_client
as noted here: Connecting to HTTPS with netcat (nc)If you can ssh into the server, I recommend this:
Your browser will report an error that the certificate is not for localhost, but for the remote_server, but at least you would have proved that the connectivity works. You could also use openssl s_client -connect localhost:5555, as noted on other answers to verify more in detail the encrypted communication.
Good luck!
Have you got Perl with LWP::Simple?