I'm talking about server side table scripts.
I need to implement function to make synchronized http request in Azure Mobile Services - without callbacks.
Something like that:
var data1 = httpRequest(url1);
var data2 = httpRequest(url2);
var data3 = httpRequest(url3);
Is it possible?
Thanks