I just had this same error yesterday and had a couple answers posted. You might try a search on this board, but the checklist I was asked for was:
1. Is it using SSL? 2. Are you using Pragma: no-cache or cache control? 3. Is the server using gzip? 4. Did you check the URL of your HTTPService call? Go ahead and print the fault message too, as that can be helpful at times. My issue was with #2, but it was an IE6 only issue. Service Capture is a great program for debugging these things as well. Just grab the trial, and see what's up with your HTTPService call in the way of traffic. -- William --- In [email protected], [EMAIL PROTECTED] wrote: > > Hello flexcoders, > > > I am having a problem where my Flex application dipplays this error: > > faultCode:Server.Error.Request faultString:'HTTP request error' faultDetail:'Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error.[/CODE] > > Error is displayed every time i use HTTPService for connecting to a simple .php script: > > <?php > > include('file_handler.php'); > > $f = new file_handler("webct.carnet.hr", 80, "username", "password", "url", WEBDAV); > > ?> > > > I should mention that .php script work just fine when executed directly from browser and basically what it does is connect to a remote server using webdav protocol through custom 'file_handler.php' class. If i remove the line: > > $f = new file_handler("webct.carnet.hr", 80, "username", "password", "url", WEBDAV); > > used for connecting error is not displayed. I googled and didn't find any solution and what's even worse i don't know what's the problem? Can someone help me on this? > > -- > Best regards, > Mirko mailto:msabljic[at]gmail.com >

