Currently encountering a problem indigineous to the ie6 browser only

We are using flex 2 to develop a survey chart of various web traffic
parameters.
To do so we need to load XML served to the flashapp on request by an
sql-server.
When we try it out in the firefox browser, the opera browser, even in
the internet explorer 7.0,
it works fine. But in internet explorer 6.0 we seem to hit a wall.
Every time we try and run it we get an IOStreamError #2032.
Anyone experiencing similar problems?
Anyone know of a solution/an explanation?
It seems to be in the communication with the server that somethin is
amiss.
If we try to just load a static xml file it works fine.
Any help would be appreciated.
Here's the sample code:

private var inhale:XML = new XML();
private var rq:URLRequest = new URLRequest();
private var ld:URLLoader = new URLLoader();

public function init():void{
if(Application.application.parameters.xml==null){
    rq.url="ychartdata.xml";
 }
 else {
  
rq.url="/../.."+Application.application.parameters.xml+"&parameter2="+Application.application.parameters.parameter2;
  
base+=Application.application.parameters.xml+"&parameter2="+Application.application.parameters.parameter2;
 }
 ld.addEventListener("ioError", errorHandler);
 ld.addEventListener(Event.COMPLETE, parPlex);

try {
  ld.load(rq);
}

catch(e:IOError){
        trace("IOerror");
}
}
        
        
        public function errorHandler(e:IOErrorEvent):void{
                        Alert.show(e.type+":"+e.text);
        }

public function parPlex(whatever:Event):void {
parX();
}
        
        public function parX():void {   
                inhale = XML(ld.data);          
//dothestuff
}       

Sincerely

Sporarbejder






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to