If you go to the guide for that api, the one you use lists get only. There are different end points for posts.
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Darren Strong
Sent: Monday, November 16, 2020 2:49 PM
To: midrange-l General Questions (midrange-l@xxxxxxxxxxxxxxxxxx) <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: SQL REST HTTPPOSTCLOB error 38000
I've identified a test REST API site that I can use to experiment with, before I start hammering the production site I have in mind. I'm able to use the HTTPGETCLOB, because the site doesn't really need a request body, but, for production, I'm going to need to pass a request, so, I figure I need to use HTTPPUTCLOB.
So, anyway, I'm using the following bit of code, and I'm getting an error back as follows. Does anyone know what I'm doing wrong?
//**************************************************************
dcl-proc $TestAPI;
//
//**************************************************************
dcl-s URL varchar(2048);
dcl-s hdr varchar(10000);
dcl-s Request varchar(5000);
dcl-s Response varchar(5000);
//************
URL='
http://jsonplaceholder.typicode.com/todos/1';
hdr=' ';
Request=' ';
exec sql set :Response=systools.HTTPPOSTCLOB(
:url,:hdr,:Request);
return;
end-proc;
Error:
Message ID . . . . . . : CPF503E Severity . . . . . . . : 30
Message type . . . . . : Sender copy
Date sent . . . . . . : 11/16/20 Time sent . . . . . . : 15:13:17
Message . . . . : User-defined function error on member QSQPTABL.
Cause . . . . . : An error occurred while invoking user-defined function
HTTPPOSTCLOB in library SYSTOOLS. The error occurred while invoking the
associated external program or service program B2RESTUDF: in library
SYSTOOLS.D, program entry point or external name
com.ibm.db2.rest.DB2UDFWrapper.httpPostClob, specific name HTTPP00013. The
error occurred on member QSQPTABL file QSQPTABL in library QSYS2. The error
code is 1. The error codes and their meanings follow:
1 -- The external program or service program returned SQLSTATE 38000. The
text message returned from the program is:
██SYSTOOLS.HTTPPOSTCLOB██HTTPP00013██Premature end of file. .
--
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
[
https://www.medtronsoftware.com/img/MedtronMinilogo.bmp] Kevin Bucknum
Senior Programmer Analyst
MEDDATA / MEDTRON
120 Innwood Drive
Covington LA 70433
Local: 985-893-2550
Toll Free: 877-893-2550
https://www.medtronsoftware.com
CONFIDENTIALITY NOTICE
This document and any accompanying this email transmission contain confidential information, belonging to the sender that is legally privileged. This information is intended only for the use of the individual or entity named above. The authorized recipient of this information is prohibited from disclosing this information to any other party and is required to destroy the information after its stated need has been fulfilled. If you are not the intended recipient, or the employee of agent responsible to deliver it to the intended recipient, you are hereby notified that any disclosure, copying, distribution or action taken in reliance on the contents of these documents is STRICTLY PROHIBITED. If you have received this email in error, please notify the sender immediately to arrange for return or destruction of these documents.
As an Amazon Associate we earn from qualifying purchases.