[Mono-dev] xsp2 crashes

2008-09-10 Thread Stefano Incontri
Hi All, I'm using xsp2 to serve a mono Web Service inside our LAN. It works fine, but after a few hours it crashes with the following message in standard error: ** Stacktrace: ** ERROR **: file mini.c: line 8688 (mono_get_lmf): should not be reached aborting...

Re: [Mono-dev] Mono 2.0 RC1 is out!!

2008-09-10 Thread Robert Jordan
Thomas Wiest wrote: Hey Everyone, We've just released Mono 2.0 RC1 today! Please help us out by giving it a try with your applications. As always, you can get the preview/RC releases here: http://mono.ximian.com/monobuild/preview/download-preview/ Please report any bugs that you may

Re: [Mono-dev] Mono on ARM

2008-09-10 Thread FirstName LastName
I know you guys must be busy with Mono 2.0 but I appreciate your responses. I would like to investigate this more thoroughly as I would like to prove to my teammates that MONO is the way to go on the ARM. I've proved it already by using other components. This casting issue (gint64 to

Re: [Mono-dev] Mono on ARM

2008-09-10 Thread Rodrigo Kumpera
Reporting a bug is the way to go. Anyway, it's a really bad idea to use floating point under ARM as the performance is terrible. In the long run you are better by eliminating it's uses. On Wed, Sep 10, 2008 at 9:11 AM, FirstName LastName [EMAIL PROTECTED]wrote: I know you guys must be busy

[Mono-dev] Thread creation failed

2008-09-10 Thread sagiv
Hi guys i wrote a server application serving multiple requests after some time i am getting different erros regarding thread creation faild : ** (OptServer.exe:13619): WARNING **: CreateThread: error creating thread handle ** (OptServer.exe:13619): WARNING **:

[Mono-dev] System.Net.NetworkInformation.NetworkChange Support

2008-09-10 Thread ebonnett
How do I find out what the earliest supporting version of mono is for this class (or any class for that matter)? I am on 1.2.4 and I see that there is some support for 2.0, however, I'm not sure what's supported and what isn't. Thanks! -- View this message in context:

[Mono-dev] Are this bugs / features going to be fixed / released in the next builds?

2008-09-10 Thread marcos b
All of this tests succeed in Microsoft .net Environment, but none does in mono. [Test] public void TypedDataSetsWithBinaryRemotingFormat() { DataSet1 ds = new DataSet1(); //Any dataset with a simple, one column datatable ds.RemotingFormat =

[Mono-dev] Are these bugs/features going to be fixed/released in the next builds?

2008-09-10 Thread marcos b
All of these tests succeed in Microsoft .net runtime, but none does using mono. [Test] public void TypedDataSetsWithBinaryRemotingFormat() { DataSet1 ds = new DataSet1(); ds.RemotingFormat = SerializationFormat.Binary; BinaryFormatter

Re: [Mono-dev] Thread creation failed

2008-09-10 Thread Adar Wesley
Hi Sagiv, Is your application leaking Threads, Memory, Virtual Memory, Handles? Any such leakage can prevent the system from being able to create threads. --- Adar Wesley On Mon, Sep 8, 2008 at 12:19 PM, sagiv [EMAIL PROTECTED]wrote: Hi guys i wrote a server application serving multiple

[Mono-dev] Idea for use MonoCharge under Windows

2008-09-10 Thread Petit Eric
:\PROGRA~1\MONO-1~1.1\bin;%PATH% FOR %%F IN (*.dll) DO ( mono D:\temp\SharpDevelop\monocharge-20080910\monocharge-20080910\2.0\gacutil.exe -i %%F ) pause -- Cordially. Small Eric Quotations of the days: --- If one day one

Re: [Mono-dev] Are these bugs/features going to be fixed/released in the next builds?

2008-09-10 Thread Daniel Morgan
When you say test does not succeed, how so? Exceptions thrown? DataSet is not populated with a table? --- On Wed, 9/10/08, marcos b [EMAIL PROTECTED] wrote: From: marcos b [EMAIL PROTECTED] Subject: [Mono-dev] Are these bugs/features going to be fixed/released in the next builds? To:

Re: [Mono-dev] Idea for use MonoCharge under Windows

2008-09-10 Thread Daniel Morgan
( mono D:\temp\SharpDevelop\monocharge-20080910\monocharge-20080910\2.0\gacutil.exe -i %%F ) pause ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Mono on ARM

2008-09-10 Thread FirstName LastName
Hi, I tried to create a bug but was unsuccessful. I created an account at Novell, wrote the bug, but when I submit, it fails. I was wondering if you could help me out on one thing. As you know, my problem is when I cast a long to a double on the ARM. My float ops seem to work. It's only

Re: [Mono-dev] Are these bugs/features going to be fixed/released in the next builds?

2008-09-10 Thread marcos b
All the test throw exceptions. In the specific case of the TypedDataSetsWithBinaryRemotingFormat() Test, a IndexOutOfRangeException is thrown. My testing environment is Windows xp sp3. I have the .net framework 2.0 and mono 2.0 rc1 installed. I hope this helps. Daniel Morgan-3 wrote:

Re: [Mono-dev] Are these bugs/features going to be fixed/released in the next builds?

2008-09-10 Thread Robert Jordan
marcos b wrote: All the test throw exceptions. In the specific case of the TypedDataSetsWithBinaryRemotingFormat() Test, a IndexOutOfRangeException is thrown. This is a known bug: https://bugzilla.novell.com/show_bug.cgi?id=324669 The RemotingConfiguration.CustomErrorsMode issue is trivial

Re: [Mono-dev] Mono on ARM

2008-09-10 Thread Rodrigo Kumpera
Novell's bugzilla sucks, specially because when it fails where one can fill a bug report about? ;) We need to pinpoint the exact IL sequence that's causing your crash, it's not just conv.r8 that will cause you trouble. Run mono with -v -v -v -v and send us the resulting file, it should be enough