Is there any way to tell a URLRequest in Flex 2 that I don't want it to handle authentication for me? I know in Flex 3 there is a 'authenticate' property that I can set, but apparently there is no such thing in Flex 2.
On a similar note it seems strange that it would exist in Flex 3 but not in Flex 2 since URLRequest is in flash.net and it was my understanding that those things were simply part of Flash that ActionScript was making use of? Is there some way I can reference that? I tried request['authenticate'] = false but it threw an error at runtime. It seems that URLRequest for file uploading does not properly handle authentication, so I would rather it just ignore the authentication entirely and I'll add an exclusion for the upload URL, but apparently that refuses to work. When I do a URLRequest to upload it seems to want to do authentication handshaking and does not actually send the file upload in the URLRequest.

