× 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.



thanks Charles and Brad,
Our api we are connecting to does allow us pushing a list of items to it,
but (of course) this is a old legacy "cycle" type app which would require
some rework to fit this in.
This is a database and business process that is moving off the IBM i, and I
am removing a setll-dowhile loop for this api....
When this app was first designed (turn a complex report into a green screen
subfile program) it has a work file built first...
Then years later a data queue was added to further sort, sift data... So I
will probably hook in the point of writing into the data queue to build my
list,

on a side note, I have made my program kinda like what Charles describes
above.. but it is _called_ multiple times
first to open, execute persist post, then return... call again just
execute persist post... etc...
however, I loose my connection properties after the 2nd call...




On Wed, Sep 19, 2018 at 5:38 PM Charles Wilt <charles.wilt@xxxxxxxxx> wrote:

As Brad mentions, using a persistent connection would be the most efficient
as you're not opening/closing the HTTP connection for each request.

But you're still going to have to call http_persist_post() 1000 times in a
loop.
http_persist_open();
for x = 1 to 1000;
http_persist_post();
endfor;
http_persist_close();

A truly "better" way would require that the server you're posting to
support a better way...ie some way to send a request for all 1000 articles
at one time.

The only other improvement you can make from your side alone would be to
multi-thread the requests. That should allow your process to complete much
faster. Assuming you don't overload the server on the other side.

Charles



On Wed, Sep 19, 2018 at 9:06 AM Gerald Magnuson <
gmagqcy.midrange@xxxxxxxxx>
wrote:

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...
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: http://amzn.to/2dEadiD

--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: http://amzn.to/2dEadiD


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

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.