Rajesh Karunakaran
Programmer
Dear all,
I am using MSXML2.ServerXMLHTTP.6.0 for communicating with a API
oHttp = CREATEOBJECT("MSXML2.ServerXMLHTTP.6.0")
I am calling the .open() method, initializes required headers, prepare the input body text etc etc
and then calling the .send() method.
The API endpoint is to create only a single customer record. If I have to create multiple, I need to call it repeatedly.
I assume it doesn't allow to call .send() repeatedly by using a single .open() in the beginning, correct?
I will have to release oHttp after each .send() and start fresh .open(), right?
Rajesh
Rajesh
I am using MSXML2.ServerXMLHTTP.6.0 for communicating with a API
oHttp = CREATEOBJECT("MSXML2.ServerXMLHTTP.6.0")
I am calling the .open() method, initializes required headers, prepare the input body text etc etc
and then calling the .send() method.
The API endpoint is to create only a single customer record. If I have to create multiple, I need to call it repeatedly.
I assume it doesn't allow to call .send() repeatedly by using a single .open() in the beginning, correct?
I will have to release oHttp after each .send() and start fresh .open(), right?
Rajesh
Rajesh