vote up 0 vote down star

I tried using both HTTPService and URLRequest/URLLoader. But I can't figure out how to get either the response output or the response headers in case of a server error(like 500). Some help would be really appreciated.

flag

67% accept rate
Do u use flash cs3? – Ahmy Jun 2 at 12:27

1 Answer

vote up 2 vote down check

Listening to the HTTPStatusEvent should give you the right status code, but you won't have access to the response body.

You need to do this through sockets.

This projects encapsulates requests through sockets, giving you access to the status code, body response and other niceties (making PUT and DELETE requests, for example).

Note that since flash player 10, using sockets will require additional steps regarding crossdomains.

Cheers

link|flag
yikes, that's what I was afraid of. – toby Jun 2 at 13:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.