You might want to try Scott Klement's forum:
https://www.scottklement.com/forums/
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of (WalzCraft) Jerry Forss
Sent: Thursday, December 9, 2021 10:58 AM
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: Web Service Not Working
CAUTION: This email originated from outside the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
Hi All,
I can get the request working through Postman but my attempts fail with a 406 code.
I have tried both request types with the same result.
What the heck am I doing wrong?
Working with UPS is a pain!
Dcl-Proc SetHeader;
// ----------------------------------------------------------------------------------
// Input Parameters
// ----------------------------------------------------------------------------------
Dcl-pi *N;
Headers VarChar(1024);
End-pi;
// ----------------------------------------------------------------------------------
// Local Parameters
// ----------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------
// Data Structures
// ----------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------
// Mainline
// ----------------------------------------------------------------------------------
Headers = 'Username: ' + %Trim(UPSUserName) + CRLF +
'Password: ' + %Trim(UPSPassword) + CRLF +
'AccessLicenseNumber: ' + %Trim(APIKey) + CRLF;
End-Proc;
Dcl-S TrackingUrlProd VarChar(100)
Inz('
https://onlinetools.ups.com/track/v1/details/');
Request = %Trim(TrackingURLProd) + %Trim(EntTrackNo);
Rc = http_xproc(HTTP_POINT_ADDL_HEADER : %paddr(SetHeader));
Rc = http_url_get( Request : ResponseFile);
// rc = http_req('GET'
// : Request
// : ResponseFile
// : *omit
// : *omit
// : *Omit
// : 'application/json');
// Load Response If No Error
If Rc = 1;
Subject to Change Notice:
WalzCraft reserves the right to improve designs, and to change specifications without notice.
Confidentiality Notice:
This message and any attachments may contain confidential and privileged information that is protected by law. The information contained herein is transmitted for the sole use of the intended recipient(s) and should "only" pertain to "WalzCraft" company matters. If you are not the intended recipient or designated agent of the recipient of such information, you are hereby notified that any use, dissemination, copying or retention of this email or the information contained herein is strictly prohibited and may subject you to penalties under federal and/or state law. If you received this email in error, please notify the sender immediately and permanently delete this email. Thank You
WalzCraft PO Box 1748 La Crosse, WI, 54602-1748 www.walzcraft.com<
http://www.walzcraft.com> Phone: 1-800-237-1326
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-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.