Thanks Vipul
I am trying following that . I cannot find on the documentation whats available for me to parse the HTTP Client Object so I can write the data back to a table. does anyone has an example?
I got this code here but I get only the [Object httpClientReponse]
var http = new HttpClientRequest("http://XXX")
var buffer = new MemoryBuffer();
buffer.fromString("MyLogin" + ':' + "MyPassword", "iso-8859-1");
//http.header["Authorization"] = "Basic " + buffer.toBase64();
//http.header["Content-Type"] = "text/xml; charset=utf-8";
http.method = "GET"
http.execute();
var resp = eval(http.response);
logInfo(resp);