[Mono-devel-list] Problems with web controls containers

2005-08-07 Thread Oliver Weichhold
Could anybody explain to me why this code throws an ArgumentException in Mono 1.1.8 but works fine with the MS .Net 1.1 and Mono 1.02? protected void MoveChildControls(System.Web.UI.Control from, System.Web.UI.Control to) { Control[] ControlList = new Control[from.Controls.Count];

[Mono-devel-list] Re: mod-mono trouble on debian

2005-08-07 Thread Oliver Weichhold
Figured out what the problem was. I've got mod_security installed on the production machine and had the SecFilterScanPOST On in httpd.conf which worked in mono 1.02 but apparently not anymore. ___ Mono-devel-list mailing list

Re: [Mono-devel-list] C# Threading : libgcc_s.so.1 mustbeinstalledfor pthread_cancel to work

2005-08-07 Thread Brion Vibber
Rafael Mizrahi wrote: Thanks for the info, Ben, Indeed, my problem was not solved by adding export LD_ASSUME_KERNEL=2.4.19 In poking at this some more, I have tried the LD_ASSUME_KERNEL but it doesn't seem to make a particular difference that I can tell. What does seem to have helped is

RE: [Mono-devel-list] C# Threading : libgcc_s.so.1 mustbeinstalledfor pthread_cancel to work

2005-08-07 Thread Rafael Mizrahi
Thanks brion, Using ulimit -n 8192, I worked around my problem, too. In fact, my program was looking for problems, I ran a program that loads thousands of jar files into an AppDomain, and the IBM JVM, probably, does not release them fast enough. Once again, I did not have this problem using Sun

RE: spam: suspected: Re: [Mono-devel-list] Graphics merge-in status

2005-08-07 Thread Andrew Skiba
Hi Jonathan. For regression tests I write that rely on external files, I usually have a XXX-update target. For example, if make check runs the regression tests, then check-update would update the external resources. Good idea. I'll separate the platform from the generation of results. So

Re: [Mono-devel-list] Issue with mono_debugger_add_type on Solaris SPARC.

2005-08-07 Thread Zoltan Varga
Hi, This particular issue is already fixed in SVN, however some other alignment issues remain, so --debug is currently unusable on SPARC. Zoltan On 8/5/05, Gary M. Smithrud [EMAIL PROTECTED] wrote: Gary M. Smithrud Haley

Re: [Mono-devel-list] Re: ThreadAbortException - Why is it rethrown?

2005-08-07 Thread Zoltan Varga
Hi, This is called 'undeniable exception propagation'. See this for more info: http://blogs.msdn.com/cbrumme/archive/2003/08/20/51504.aspx Zoltan On 8/5/05, Vivek, Bharath Varma (IE10) [EMAIL PROTECTED] wrote: Thanks for your responses Atsushi David.

[Mono-devel-list] Delete old xml standalone test dir

2005-08-07 Thread Andrew Skiba
Hello, Eno. Today I saw someone trying to run old sys.xml/Test/System.Xml/standalone_tests testsuite. It's outdated and it fails on svn latest. As it is completely replaced by Test/System.Xml/W3C suite, may be it's better just to remove the old one (or move it to deleted dirs), so it does not

RE: [Mono-devel-list] Issue with mono_debugger_add_type on Solaris SPARC.

2005-08-07 Thread Gary M. Smithrud
Thanks! Gary M. Smithrud Haley Systems, Inc. Phone: 724-934-7853 [EMAIL PROTECTED] www.haley.com Moving at the Speed of Change -Original Message- From: Zoltan Varga [mailto:[EMAIL PROTECTED] Sent: Sunday, August 07, 2005 11:15 AM To: Gary M. Smithrud Cc: mono-devel Subject: Re:

[Mono-devel-list] Re: Delete old xml standalone test dir

2005-08-07 Thread Atsushi Eno
Hello, It's outdated and it fails on svn latest. I could not understand this line. As it is completely replaced by Test/System.Xml/W3C This is not true. See Test/System.Xml/standalone_tests.README. But yes it is good to document that we can use new test instead of xmltest.cs. Atsushi Eno

[Mono-devel-list] API change in System.Collections.Generic.KeyValuePair

2005-08-07 Thread Kamil Skalski
Hi! In MS.NET 2.0 July CTP they have changed the System.Collections.Generic.KeyValuePair structure, so now it does not contain the fields Key and Value, but properties. I attach the patch, which fixes it, but there are two questions / issues about it. 1) Do we want the CTP API in mono now, or