[Mono-dev] Bug in System.Net.ServicePointManager. The runtime does not honor DefaultConnectionLimit.

2007-11-05 Thread Sunny
The mono runtime does not honor DefaultConnectionLimit, nor the machine.config file setting "maxconnections". It always open only 2 simultaneous connections to a host. Detailed explanations with test code are posted in the bug report: Cheers -

Re: [Mono-dev] Patch for System.IO.Ports.SerialPort ReadLinefunction

2007-11-05 Thread Michael Mattess
Hello Miguel, Yes using the ReadTo function does make the most sense as it is a special case of the operation. I had a look at the ReadTo function and I think it is broken. It assumes that it is in the initial state (IE current is 0) when it encounters the beginning of the string it is

[Mono-dev] 1.2.6 Release Notes

2007-11-05 Thread Ivan N. Zlatev
My notes as follows. System.Windows.Forms * SplitContainer now supports FixedPanel layouting. System.Design Initial implementation of the .Net 1.1 and .Net 2.0 Design-Time framework. Includes: * Hosting: DesignSurface, DesignSurfaceManager, etc. * CodeDom Serialization/Deserialization: CodeDom

[Mono-dev] mod_mono and supplementary groups

2007-11-05 Thread Jay Miller
I'm confused about how mod_mono works with supplementary groups. I have Apache running as apache.apache, with the apache user a member of the 'safe' group: $ groups apache apache : apache safe I also have a directory with 'safe' ownership: $ ls -dl /var/log/safe drwxrwxr-x 2 root safe 4.0K

Re: [Mono-dev] mono summit session planning

2007-11-05 Thread Mike Horsley
> Apache - how to configure Apache to run mono? Ah, this is a new idea. Do you have some specific questions that are not addressed by our mod_mono page on the web site? >> The issue we face is being time-challenged. I haven't tried the notes on Apache because I've read up on Apache and have be

[Mono-dev] On the debugger.

2007-11-05 Thread Miguel de Icaza
> Debugging – how to debug on Linux with breakpoints using c#? > > If this requires building mono from source, what compilation flags > need setting? The story of the debugger is a bit complicated. A year ago we decided that we would aim for a "1.0" release that had a number of feature

Re: [Mono-dev] mono summit session planning

2007-11-05 Thread Miguel de Icaza
> Debugging – how to debug on Linux with breakpoints using c#? We will have a session on this. > Apache – how to configure Apache to run mono? Ah, this is a new idea. Do you have some specific questions that are not addressed by our mod_mono page on the web site? > Mono and Ajax.net? Will a

Re: [Mono-dev] [PATCH] ShellExecuteEx ProcessId support for Windows

2007-11-05 Thread Kornél Pál
Hi, An updated version of the patch is attached. Please review this one as well. Kornél - Original Message - From: "Robert Jordan" <[EMAIL PROTECTED]> To: Sent: Monday, November 05, 2007 2:03 PM Subject: Re: [Mono-dev] [PATCH] ShellExecuteEx ProcessId support for Windows Hi Kornél,

Re: [Mono-dev] Patch for System.IO.Ports.SerialPort ReadLine function

2007-11-05 Thread Miguel de Icaza
Hello, My ReadLine routine is broken, it did not append data that was only partially part of the ReadLine. While I was fixing it, I noticed that we already have a routine that did this correctly (ReadTo). So am going to just change the code to be: ReadTo (new_line). Miguel. __

[Mono-dev] mono summit session planning

2007-11-05 Thread Mike Horsley
We are working to migrate our native windows based server application to mono running on Linux. We already use mono on Linux (SUSE 10.x) for our monitoring systems. The following would really help accelerate our transition: Debugging - how to debug on Linux with breakpoints using c#? If th

Re: [Mono-dev] Patch for System.IO.Ports.SerialPort ReadLine function

2007-11-05 Thread Miguel de Icaza
Hello Michael, As suggested by Alp in the bug (321988), I wrote a state-driven version of the ReadLine routine for serial ports. It should be more efficient. Would you mind testing it? public string ReadLine () { CheckOpen (); List bytes_read = new List(); byte [] b

[Mono-dev] dbus-sharp example crash

2007-11-05 Thread [EMAIL PROTECTED]
Hi: I try the EchoClient and EchoServer examples to begin my work on dbus-sharp and the program works, but after I recive the message fron the object on the server, the client crash with: Reply: Hello world! Stacktrace: Native stacktrace: /usr/local/bin/mono [0x816a59f] /usr/local/bin/mo

Re: [Mono-dev] Size of Microsoft.Scripting.dll

2007-11-05 Thread Jb Evain
Hey Seo, On 11/4/07, Sanghyeon Seo <[EMAIL PROTECTED]> wrote: > 3. Binaries compiled by Microsoft compiler is about 4% smaller than > those by Mono. Could you try to compile it with a Mono built with the patch attached to 320009 to see if we can nibble a few more percent? Thanks, -- Jb Evain

Re: [Mono-dev] Mono Bugs Days.

2007-11-05 Thread Atsushi Eno
1.2.6 is not branched yet, so it will be included in newer versions. In general *please* post your individual bug stuff not under things like this thread (or branching announcement etc.) but on each bug report page (bugzilla) so that others do not have to be bothered by off topic. Thanks. Atsushi

Re: [Mono-dev] [PATCH] ShellExecuteEx ProcessId support for Windows

2007-11-05 Thread Robert Jordan
Hi Kornél, Kornél Pál wrote: > Hi, > > I intalled the latest cygwin available and it has no winternl.h (or any > equivalent header). On the other hand it has the DDK headers bundled. > > A possible solution is to use winternl.h with MS VC++ and the DDK headers > with cygwin. What about that?

Re: [Mono-dev] Mono Bugs Days.

2007-11-05 Thread pablosantosluac
Hi there! I'd like to know whether bug 82550 (fixed on SVN changeset 84714) will be integrated into mono 1.2.6. AFAIK it is still wrong in latest 1.2.5 It is a compiler problem so it would be nice to get it in the next one. pablo - Original Message - From: "Miguel de Icaza" <[EMAIL P

Re: [Mono-dev] [PATCH] ShellExecuteEx ProcessId support for Windows

2007-11-05 Thread Kornél Pál
Hi, I intalled the latest cygwin available and it has no winternl.h (or any equivalent header). On the other hand it has the DDK headers bundled. A possible solution is to use winternl.h with MS VC++ and the DDK headers with cygwin. What about that? Kornél - Original Message - From:

Re: [Mono-dev] [PATCH] ShellExecuteEx ProcessId support for Windows

2007-11-05 Thread Robert Jordan
Hi Kornél, Kornél Pál wrote: > HAVE_GETPROCESSID depends on WINVER that is not set, so > HAVE_GETPROCESSID is > never defined on Windows. This means that GetProcessId never gets called on > Windows and process ID is allways 0. > > This patch adds run-time detection for GetProcessId on Windows. >

[Mono-dev] [PATCH] ShellExecuteEx ProcessId support for Windows

2007-11-05 Thread Kornél Pál
Hi, HAVE_GETPROCESSID depends on WINVER that is not set, so HAVE_GETPROCESSID is never defined on Windows. This means that GetProcessId never gets called on Windows and process ID is allways 0. This patch adds run-time detection for GetProcessId on Windows. Note that only Windows XP SP1 and abo

Re: [Mono-dev] Size of Microsoft.Scripting.dll

2007-11-05 Thread Marek Safar
Hello, > 2007/11/4, Marek Safar <[EMAIL PROTECTED]>: > >> 4% is really small difference. Is binary compiled with /o+ switch ? >> > > I believe /o is on by default in mcs. > Yes, it is but not for csc. Marek ___ Mono-devel-list mailing list M