This utility will allow you to test Appcelerator Universal Client™ connectivity with Appcelerator Services.
Type in a service: Version: Scope:
Optionally, you can specify arguments below. You can also specify JSON as the data payload.
Message Trace Log
try { var type = $("messagetype").value; var args = $('messageargs'); var value = args.value; var data = {}; if (value.charAt(0)=='{') { data = value.evalJSON(); } else { data = {message:value}; } var scope = $('scopename').value; var version = $('version').value; $MQ(type, data, scope, version); } catch (e) { Logger.error ('Oops! Error received: '+e+'\n'+(e.stack||'no stack trace available')); alert ('Oops! Error received: '+e+'\n'+(e.stack||'no stack trace available')); }