Maybe something like this in either STRSQL, or the ACS SQL script tool. This isn't meant to be useful, just an indicator of whether you could run either of these functions:
Older method (uses JVM):
SELECT cast(SYSTOOLS.HTTPGETCLOB(
URL => CAST('
http://www.google.com'
AS VARCHAR(255)),
HTTPHEADER => CAST(NULL AS CLOB(1K))) as varchar(2048))
FROM SYSIBM.SYSDUMMY1
Newer Method:
SELECT cast(qsys2.http_get(
'
http://www.google.com',
'') as varchar(2048))
FROM SYSIBM.SYSDUMMY1
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of James H. H. Lampert via MIDRANGE-L
Sent: Thursday, August 4, 2022 1:04 PM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Cc: James H. H. Lampert <jamesl@xxxxxxxxxxxxxxxxx>
Subject: Re: Checking to see whether a given box can access a web service
CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
I was actually looking for something that could be done from a native command line, and wouldn't require installing *anything.*
I've determined that a simple ping to our server will determine whether it can resolve the domain. And most of the other stuff, like ZLIB, and like "zip" and "unzip" for certain situations that exceed ZLIB's capacity, are easy enough to install.
The real question is whether there's an easy way to determine, from a command line, whether the box has the prerequisites for HTTPAPI to access an HTTPS-only web site. And reading over the section of the HTTPAPI Readme that deals with this, I get the feeling it might be a little bit dated.
--
JHHL
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
As an Amazon Associate we earn from qualifying purchases.