Does anyone out there have a working example of an eSignal script reading a file from a http request? I am trying to do something like this
This code always prints "open is false". I also have fiddler open on my desktop and I do not even see any requests firing out to mydomain.com
Code:
var v = new HTTP("https://mydomain.com/test.txt");
if(v.open()) {
while(!v.eof()) {
debugPrintln(v.readln());
}
}else{
debugPrintln("open is false")
}
This code always prints "open is false". I also have fiddler open on my desktop and I do not even see any requests firing out to mydomain.com