Okay Guys, jluke and myself seem to have tracked this one down.
The culprit was a call to XmlTextWriter.Close() in the HandleTree (HttpContext context, string tree) method, which was originally called from IHttpHandler.ProcessRequest. XmlTextWriter was being created on the Response.Output stream (in the line: XmlTextWriter w = new XmlTextWriter (context.Response.Output);). So when we were closing the XmlTextWriter, we were also closing the Output stream. >From msdn example searching, it seems that closing the response stream in the >IHttpHandler.ProcessRequest method is a no-no, so this was causing the issue. simply commenting out the w.Close(), ensured that the response stream wasn't being closed and all now seems well in both IE and Mozilla 1.4. jluke could you please post this to the mono-docs-list? JBA -----Original Message----- From: John BouAntoun Sent: Friday, 15 August 2003 8:46 AM To: [EMAIL PROTECTED] Subject: [Mono-list] Monodoc treeview control issues Guys, Last night while trying to troubleshoot the tree view control at http://mono.ximian.com:8080/ i discovered that the control seemed to work fine for me. I realised that the tree view control works fine in Mozilla 1.3 Windows, But not in Mozilla 1.4 Windows. This leads me to believe that it may be a javascript issue (XMLhttp most likely). Still doing some troubleshooting and will post more as I figure it out over the weekend. JBA _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
