[Mono-dev] Re: "CreateThread: error creating thread handle" with mod_mono and ASP.NET

2006-03-31 Thread Robert Jordan
Hi Hubert, My server is up since about 24h... Does someone has ever since this kind of error, this is the log of mod_mono (in verbose mode)... It looks like mono was running out of wapi handles. I don't know which is the max handle count or whether all handles share the same table. For the la

Re: [Mono-dev] What would you like to see in Mono?

2006-03-31 Thread Matthijs ter Woord
I understand that limitation, but maybe it's possible to enable it runtime then? - Original Message - From: "Miguel de Icaza" <[EMAIL PROTECTED]> To: "Joachim Ante" <[EMAIL PROTECTED]> Cc: "Mono Dev" Sent: Thursday, March 30, 2006 8:00 PM Subject: Re: [Mono-dev] What would you like to s

[Mono-dev] mod_mono don't terminate XSP

2006-03-31 Thread Hubert FONGARNAND
Hello I'm working on a program that would manage the "mod_mono_server" process (example : it would restart it if it die, send a mail, write log...), I want to control the lifecycle of mod_mono_server... It work well with the "MonoRunXSP false" directive... But when I shutdown apache, mod_mono

Re: [Mono-dev] Re: Mono-devel-list Digest, Vol 11, Issue 85

2006-03-31 Thread Jonathan Pryor
On Thu, 2006-03-30 at 22:55 -0800, Jason S wrote: > What I would like to see, is a nice way of interoping from a native C > ++ program into Mono. As you mention, Microsoft's solution is C++/CLI. There isn't likely to be C++/CLI support for Mono any time soon. However, Microsoft has another solut

[Mono-dev] [PATCH] ShellExecuteEx ProcessId support for Windows 2000 and Windows XP RTM

2006-03-31 Thread Kornél Pál
Hi, GetProcessId is supported only by Windows XP SP1 and Windows Server 2003 or later. Unlike stated in the comment ProcessId can be obtained without GetProcessId as well. On NT this is quite easy as NtQueryInformationProcess will return it. On Win9x it needs some more hack but as we only su

[Mono-dev] wsrf.net and mono

2006-03-31 Thread sub_line .
hi,i'm searching for people which have experience with wsrf.net and mono!i've searched a lot in the web but i couldn't find any stuff to get started.at the moment i would be happy to find a simple example just to test if wsrf.net could work with mono.i've already tried to compile the examples whic

[Mono-dev] c# compilater - mcs

2006-03-31 Thread Denis ERCHOFF
Hi, For educational purpose i'am looking at the c# compilater. Here is a part of my code : using System; /namespace Test { public class Test : System.Web.UI.UserControl { public int field; public void TestMethod() {

[Mono-dev] Re: [PATCH] ShellExecuteEx ProcessId support for Windows 2000 and Windows XP RTM

2006-03-31 Thread Kornél Pál
I experienced some problems and I realized that some libc functions were imported from ntdll.dll rather than msvcrt.dll that caused the problems. Explicitly referencing msvcrt before ntdll solved the problem but I'm not sure whether this is the best solution. Kornél - Original Message ---

RE: [Mono-dev] Re: Mono-devel-list Digest, Vol 11, Issue 85

2006-03-31 Thread Jonathan S. Chambers
Yes, I was working on COM Interop a little while ago. My schedule got busy for a little bit, but now I hope to finish the work. This will initially apply only to MS COM on Windows. However, as COM and XPCOM are very similar I think XPCOM Interop could be done with a little bit of additional work.

Re: [Mono-dev] MonoDoc Win32 - Upload Contributions

2006-03-31 Thread Daniel Morgan
Can you at least add the data providers? I can contribute docs for these.  Remember, I am the maintainer of the database pages on the mono wiki.   And if possible, I wonder if there is a way to take current documentation for Npgsql, ByteFX.Data/MySql.Data, and FirebirdSql.Data and somehow convert

Re: [Mono-dev] Gtk# not found

2006-03-31 Thread paulomorfeo
That instalation of mono worked. My program seemed to run fine. In the mean time, i noticed that there is another version of mono, 1.1.13.6, and went to try that one. It still gives the same problem. For watever reason, your experimental installer for Windows runs my Gtk# 2.4 application while the

Re: [Mono-dev] Re: compiling for compact framework

2006-03-31 Thread Matthias Eller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jb Evain wrote: > My bad, it appears that it's not at all what I thought. The problem > comes from the public keys used to sign the compact framework which > are different from the ones used by Mono and the .net framework. A > little more detail

[Mono-dev] Bug 77721

2006-03-31 Thread Edward Eisenbrey
Can someone please look at the bug I have reported?  http://bugzilla.ximian.com/show_bug.cgi?id=77721  I posted it almost a month ago and it looks like no one has even reviewed it.  Thanks!   -Ned  ___ Mono-devel-list mailing list Mono-devel-list@li

Re: [Mono-dev] Early 1.1.14 draft.

2006-03-31 Thread Mario Carrión
On 3/31/06, Miguel de Icaza <[EMAIL PROTECTED]> wrote: > Here is my early 1.1.14 draft, please send suggestions: > > http://www.go-mono.com/archive/1.1.14 There is missing an "" tag when linking to previous 1.1.13 release Cheers - Mario Carrión <[EMAIL PROTECTED]>

[Mono-dev] Mono profiler agent for jitted code

2006-03-31 Thread Yeh, Jason
This is rather off topic from the original thread "What would you like to see in Mono". Thus, I created a new thread for this discussion while leaving Joe's original message in this mail. I have been working on a proposal to extend Oprofile to profile the "anonymous samples" resulted from jitted

Re: [Mono-dev] What would you like to see in Mono?

2006-03-31 Thread Zoltan Varga
Hi, Please-Please file bug reports for the issues that can be considered bugs, like the "more robust reporting of the stack traces of all threads with SIGQUIT." issue, which I never heard about before. I can't promise that we will fix all of our bugs in a short tim

Re: [Mono-dev] Mono profiler agent for jitted code

2006-03-31 Thread Ben Maurer
Hey Jason, I'm glad to see interest in this again. I took a quick look at this during a week I was in Boston over my winter break. I checked some code in to svn to emit a ELF file in (what I think is) the correct format for oprofile as it works right now. I know the state of anonymous samples for

RE: [Mono-dev] Re: Mono-devel-list Digest, Vol 11, Issue 85

2006-03-31 Thread Jason S
I read the COM Interop message that was attached, and it looks to pertain to Managed -> Unmanaged interop.   Does the COM Interop also help the other way, calling Managed code from Unmanaged?   For me, I was planning on using the PInvoke method of Managed -> Unmanaged interop.   However for U

RE: [Mono-dev] Re: Mono-devel-list Digest, Vol 11, Issue 85

2006-03-31 Thread Jonathan S. Chambers
The COM Interop will eventually work in the Unmanaged->Managed direction. I’m doing the Managed->Unmanaged first since it seems more useful (and was easier for me to implement).   - Jonathan From: Jason S [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 1:11 PM To: Jonatha

Re: [Mono-dev] What would you like to see in Mono?

2006-03-31 Thread Joe Shaw
Hi, On Fri, 2006-03-31 at 19:19 +0200, Zoltan Varga wrote: > Please-Please file bug reports for the issues that can be considered bugs, > like > the "more robust reporting of the stack traces of all threads with SIGQUIT." > issue, which I never heard about before. I can't promise that we will fi

RE: [Mono-dev] Re: Mono-devel-list Digest, Vol 11, Issue 85

2006-03-31 Thread Jason S
Thanks for that update Jonathan,  I look forward to any such anouncement :)As I am almost exclusivly a c# developer (besides the c++/cli i did for this gameEngine project) I dont think I can be of much help, but if you think of anything, please let me know and i'll do my best to contribute to this

RE: [Mono-dev] Refactoring inSystem.Web/System.Web/HttpApplicationFactory.cs

2006-03-31 Thread Konstantin Triger
Title: RE: [Mono-dev] Refactoring inSystem.Web/System.Web/HttpApplicationFactory.cs Hello, My apologies, but I already committed the fix. Please revert if needed. Regards, Kosta -Original Message- From: Miguel de Icaza [mailto:[EMAIL PROTECTED]] Sent: Fri 31/03/2006 07:32 To: Kon

RE: [Mono-dev] Refactoring inSystem.Web/System.Web/HttpApplicationFactory.cs

2006-03-31 Thread Miguel de Icaza
hey, > My apologies, but I already committed the fix. > Please revert if needed. Its ok, I talked to Gonzalo, we are all fine. I just remember that when we redid that code over the summer there were some constraints on it, but I got them confused. ___

Re: [Mono-dev] What would you like to see in Mono?

2006-03-31 Thread Joachim Ante
> Hello, > >>> What i'd like to see in mono is the ability to start up an application >>> without it needing a .WAPI folder. I understand why mono needs the wapi >>> folder, but i'm sure there are application for which one wouldn't need one >>> at all. >> Yeah that would really useful. > > For th