Is this some kind of bug? When trying to send a put request with HTTPService, it sends out a get request instead.
var service:HTTPService = new HTTPService(); service.url = "my/service/2.xml"; service.useProxy = false; service.resultFormat = "text"; service.method = "PUT"; service.send(params);

