I wold like to send an HTTP request from within a script task in a BPMN model executed by Camunda using Javascript. Does anyone know how to do that?
I've already tested this:
var xmlhttp;
xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "http://test.local/append.php", true);
xmlhttp.send();
But once I get to the script task containing the above code, Tasklist
prompts that XMLHttpRequest
is not found.