any idea why the following code wont post any data?
var formValues:Object = {submit: 'submit'};
var submit:HTTPService = new HTTPService();
submit.url = 'http://myurl.com/service';
submit.resultFormat = "object";
submit.method = "POST";
submit.addEventListener(ResultEvent.RESULT,
function(e:ResultEvent):void {
trace('result');
});
submit.send(formValues);

