My Codes are like this:
                var variables:URLVariables = new URLVariables();
                var urlRequest:URLRequest = new URLRequest();
                urlRequest.url = 
"https://localhost:8080/TestApplication/index.jsp";;
                urlRequest.method = URLRequestMethod.POST;
                urlRequest.data = ba;
                urlRequest.contentType = "application/octet-stream";


                var loader:URLLoader = new URLLoader();
                loader.dataFormat = URLLoaderDataFormat.BINARY;
                loader.addEventListener(Event.COMPLETE, completeHandler);

                        try
                        {
                            loader.load(urlRequest);
                        }
                        catch (error:Error)
                        {
                            trace("Unable to load URL");
                        }

This doesn't work for me. Appreciate any help in advance

Regards,
Prem

On Jan 23, 10:14 am, abhishekchess1 <abhishekche...@gmail.com> wrote:
> hey, i'm not getting any error, its working for me,
> navigateToURL(new URLRequest('https://amc-webstp.test.mellon.com/
> webstp/stresstest/upload.jsp'));
> :)
>
> On Jan 23, 9:22 am, prem <prema...@gmail.com> wrote:
>
> > I need to access an https url from my AIR application. But when I give
> > this url and run the AIR application I get an error.
> > Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. 
> > URL:https://amc-webstp.test.mellon.com/webstp/stresstest/upload.jsp
>
> > I am sure the url is correct. Please let me know is anyone has any
> > solution. Appretiate your help in advance
>
> > Regards,
> > Prem
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_india@googlegroups.com
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to