I just found out the problem. If you put a value in the 'data' property of
the urlRequest everything starts to work:

*  var r:URLRequest = new URLRequest("http://www.google.com";);
  r.method = URLRequestMethod.POST;
  r.data = 0;

*

Now the request will be sent as post and request headers are sent with it.
Apparently the flash player thinks it is only usefull to check the
URLRequest for additional arguments if the 'data' property is filled.

Greetz Erik

On Mon, Oct 20, 2008 at 1:53 AM, Glen Pike <[EMAIL PROTECTED]>wrote:

> Hi,
>
>   Does your request go out at all?
>
>   Have you used some kind of web-proxy to look at what is going out of your
> Flash across the network - "Charles" http://www.charlesproxy.com/
>
>   Check that the system is not requesting a crossdomain.xml file before
> your request - you may not have problems in the IDE, but maybe in the
> browser / standalone - but FP may not be sending if the x-domain is "not
> working" satisfactorily.
>
>   Glen
>
>
>
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to