I didn't actually read the contents of the return carefully. Now that I look, I see I also got a 404 on the QSYS2.HTTP_GET also. Not sure why, but, this example from IBM's website does return good results for me:
select *
from json_table(
qsys2.http_get('
https://api.publicapis.org/entries',''),
'lax $.entries[*]'
columns ("API" varchar(100),
"Description" varchar(100))
) x
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Jack Woehr via MIDRANGE-L
Sent: Thursday, August 4, 2022 3:20 PM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Cc: Jack Woehr <jwoehr@xxxxxxxxxxxxxxxxxxxxxxxx>
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.
On Thu, Aug 4, 2022 at 12:45 PM Darren Strong <darren@xxxxxxxxx> wrote:
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
This works for me including if I change http: to https:
Newer Method:
SELECT cast(qsys2.http_get(
'http://www.google.com',
'') as varchar(2048))
FROM SYSIBM.SYSDUMMY1
This returns a 404 for http: and an error for https:
But we were talking about "green screen" so I just did it in STRSQL.
--
*JACK WOEHR, IBM Champion 2021-2022
<
https://www.credly.com/users/jack-woehr/badges>*
*SENIOR IBM i ENGINEER*
303.847.8442
jwoehr@xxxxxxxxxxxxxxxxxxxxxxxx
stay connected
<
https://www.linkedin.com/company/absolute-performance-inc./>
<
https://www.absolute-performance.com/>
www.absolute-performance.com
NON-DISCLOSURE NOTICE: This communication including any and all attachments is for the intended recipient(s) only and may contain
confidential and privileged information. If you are not the intended recipient of this communication, any disclosure, copying further
distribution or use of this communication is prohibited. If you received this communication in error, please contact the sender and
delete/destroy all copies of this communication immediately.
--
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.