Page 1 of 1

systools.httppostclob

Posted: Mon Sep 28, 2015 5:12 pm
by rjiron
exec sql
select
systools.httppostclob(:url,:header,:json) // url info, header info and json info
into :response // Response from web service
from sysibm.sysdummy1
;

what's the format and how do I need to pass the User & password in the previous statement?,

Re: systools.httppostclob

Posted: Mon Sep 28, 2015 9:15 pm
by Scott Klement
Roberto,

Every web service is different. In order to find out the format, you should read the documentation for the web service you want to call and/or have a conversation about this with whomever maintain/supports the web service you are calling.

Good luck!

Re: systools.httppostclob

Posted: Tue Sep 29, 2015 2:34 pm
by rjiron
I see, thank you much Scott.