HttpClientRequest not working properly when using Keep Alive | Community
Skip to main content
April 7, 2021
Question

HttpClientRequest not working properly when using Keep Alive

  • April 7, 2021
  • 0 replies
  • 845 views

Hello,

i used the example in the doc (Keep Alive example) https://docs.adobe.com/content/help/en/campaign-classic/technicalresources/api/c-HttpClientRequest.html

to implement it in my real case.

i have an array with 50 json object that i want to insert in a DB using an external API , this is my code : 

 

var apiRequest = new HttpClientRequest("www.myAPI.com"); apiRequest.method = "POST"; // open the connection with my api apiRequest.connect(); // loop through my array to insert each element. 50 calls ? for each(var contactObj in myArray){ var jsonObject = myMethodtoconstructMyObj(contactObj); apiRequest.body = jsonObject; // here normally should call the API with POST and my jsonObject in the request body apiRequest.execute(); } apiRequest.disconnect();

 

But when i check my backend i found that the api is called only once (instead of 50) and i found only one element inserted.

 

could you please guide me what's the wrong with my code.

 

Regards !

 

@jonathon_wodnicki 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.