× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I am trying to optimize this

I have a http api that I need to hit repetitively :

// If Procs is 0, then set debug, set auth
if Procs = 0 ;
http_debug(*ON:'/tmp/gem_GLOC2_debug.txt');
http_setauth(HTTP_AUTH_BASIC: userid: pass) ;
http_xproc( HTTP_POINT_ADDL_HEADER
: %paddr(add_headers) );
endif ;
if Procs = -1;
*inLR = *on ;
return ;
endif ;

msgdata = '{"articles":[{"typeid":1,"articleSecondaryId":+
'+ap2+%trim(itemnbr)+ap2+'}]} ' ;
msgdataL = %len(%trim(msgdata));
rc=http_url_post_raw(
'https://mchporl.xxx.com/LTSystem/+
api/v2/article/search'
:%addr(msgdata)
: msgdataL
:1
: %paddr('INCOMING')
:HTTP_TIMEOUT
:HTTP_USERAGENT
: 'application/json' );

return retdata ;


I would presume that there is a better way for me to iterate a list of item
numbers than
loading my msgdata field and then calling the http_url_post_raw 1000
times...

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.