Re: [Mono-dev] community

2007-05-19 Thread Matthijs ter Woord
How about including some way to submit reports of opensource projects with their status for running/using on mono? Also think about different mono versions, and users voting for a given submission, so that one can see that a given submission is confirmed. matt westerburg wrote: I am

Re: [Mono-dev] Using Reflector File Generator Add-Ins

2007-04-14 Thread Matthijs ter Woord
Decompiling is not allowed. IIRC, this is a faq on the mono website... Dimiter Dobrev (Crossroad) wrote: Hello. I’d like to ask you if it is possible to to port .NET assemblies to Mono using the .NET Reflector file generator add-ins (http://www.codeplex.com/reflectoraddins), which can

Re: [Mono-dev] [OT] Yast (3.0) in C#

2007-02-08 Thread Matthijs ter Woord
Have you thought about using a framework which will let you implement multiple frontends? Regards, Matthijs ter Woord Sharique uddin Ahmed Farooqui wrote: Hi, This idea may be wired. But I think rewriting yast in C# is real test/showcase of how much mature mono is? My sugesstion

Re: [Mono-dev] Mono.Security on Compat Framework

2007-02-06 Thread Matthijs ter Woord
:[EMAIL PROTECTED] On Behalf Of Matthijs ter Woord Sent: 05 February 2007 16:23 To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] Mono.Security on Compat Framework Hi Sebastien, I think my changes consist of the following: 1. A compatibility layer. This contains a rough

[Mono-dev] Mono.Security on Compat Framework

2007-02-05 Thread Matthijs ter Woord
kinds of compatibility classes, to emulate the normal .NET framework, but this seems quite doable to me. I hope to gain some comments on this... Regards, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] Mono.Security on Compat Framework

2007-02-05 Thread Matthijs ter Woord
of a utility class which lets one launch a method asynchronously (ie, different thread), and the usage of this method wherever neccessary. Let me know if you're interested... Regards, Matthijs ter Woord Sebastien Pouliot wrote: Hello Matthijs, On Mon, 2007-02-05 at 17:04 +0100, Matthijs ter

Re: [Mono-dev] Patch to HttpApplicationFactory.cs, improves App_Code compilation

2007-01-11 Thread Matthijs ter Woord
Isn't this just *.* beneath the application root? Marek Habersack [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] AppServer project proposal

2006-12-14 Thread Matthijs ter Woord
, Matthijs ter Woord [EMAIL PROTECTED] wrote: Hi everybody, In the Mono SVN, there's a module named AppServer. For a very short intro about it, see www.mono-project.com/AppServer I want to offer to step up as maintainer of the project. I do want to replace with the attached code. Maybe it's better

Re: [Mono-dev] [PATCH] System.Transactions.Transaction

2006-11-15 Thread Matthijs ter Woord
I'd prefer ReferenceEquals (x, null) instead. Also, please use the proper indentation. Like this? begin 666 trans.patch [EMAIL PROTECTED](%1R86YS86-T:6]N+F-SCT]/3T]/3T]/3T]/3T]/3T]/3T]/3T] M/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T*

Re: [Mono-dev] class status 2.0

2006-11-14 Thread Matthijs ter Woord
Then the website needs to be adjusted, as it mentions Beta2 Marek Sieradzki [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On 11/14/06, Matthijs ter Woord [EMAIL PROTECTED] wrote: Are there plans to update the class status data files to the .NET 2.0 RTM assemblies

[Mono-dev] [PATCH] System.Transactions.Transaction

2006-11-14 Thread Matthijs ter Woord
In the attached diff file, is a change for implementing the == and != operators of System.Transactions.Transaction. Please review and commit... begin 666 trans.patch [EMAIL PROTECTED](%1R86YS86-T:6]N+F-SCT]/3T]/3T]/3T]/3T]/3T]/3T]/3T]

[Mono-dev] System.Transactions and 2PC

2006-11-14 Thread Matthijs ter Woord
Hi, when looking at the sources of Transaction, I see the EnlistDurable only supports 1 Durable resource manager. Why is this? Shouldn't it be just possible to have multiple of them? Also, regarding 2PC, why isn't this implemented? With the current codebase (ie, only one durable resource

[Mono-dev] AppDomains

2006-11-13 Thread Matthijs ter Woord
) at NApf.UnitTests.Runner.TestsRunner.WorkerThread () [0x0] - END SNIPPET What to do? Regards, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] AppDomains

2006-11-13 Thread Matthijs ter Woord
Does it get strange if I tell you that the very same binaries do run on MS .NET just fine? Robert Jordan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Matthijs ter Woord wrote: Hi, I'm the project coordinator of the NApf project. (see http://www.codeplex.com/NApf

Re: [Mono-dev] AppDomains

2006-11-13 Thread Matthijs ter Woord
Oh, also, I try to set a delegate, of which the declaration is as follows: public delegate void TestFixtureRunFinishedDelegate(string testRunName, bool passed); Matthijs ter Woord [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I'm the project coordinator of the NApf

Re: [Mono-dev] AppDomains

2006-11-13 Thread Matthijs ter Woord
I will try to make a simple test case tomorrow, as I do not a have a mono installation available right now. Hopefully something will get more clear from my other posts... Robert Jordan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Robert Jordan wrote: Matthijs ter Woord wrote

Re: [Mono-dev] AppDomains

2006-11-13 Thread Matthijs ter Woord
I made a testcase, see attached file. The following output is expected: Foo DoTest, 'Hello, World', True done Robert Jordan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Robert Jordan wrote: Matthijs ter Woord wrote: Hi, I'm the project coordinator of the NApf project. (see

Re: [Mono-dev] AppDomains

2006-11-13 Thread Matthijs ter Woord
OK. found out how i can work around this mono bug. If I make the method an instance member, and derive the object from MarshalByRefObject, it works. Matthijs ter Woord [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I made a testcase, see attached file. The following output

[Mono-dev] class status 2.0

2006-11-13 Thread Matthijs ter Woord
Are there plans to update the class status data files to the .NET 2.0 RTM assemblies? Regards, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] I need an NUnit-like performance tester

2006-08-22 Thread Matthijs ter Woord
Maybe you should just contact Jonathan de Halleux (author of NPerf). He says the current NPerf is dead. You could contact him and ask if you would agree with a merge into NUnit. - Original Message - From: Charlie Poole [EMAIL PROTECTED] To: 'Kornél Pál' [EMAIL PROTECTED];

Re: [Mono-dev] [Mono-list] Amber Communications Framework

2006-08-21 Thread Matthijs ter Woord
The Microsoft announcement referred to in the quoted post, is that really the case? Will Microsoft fight against any compatible implementation of WCF and WPF? Regards, Matthijs ter Woord - Original Message - From: Elliott Draper [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com

[Mono-dev] System.Transactions

2006-08-19 Thread Matthijs ter Woord
Hi, What are the plans on System.Transactions.dll? Regards, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [PATCH] EventLog implementation

2006-08-13 Thread Matthijs ter Woord
Congratulations! - Original Message - From: Gert Driesen [EMAIL PROTECTED] To: 'Atsushi Eno' [EMAIL PROTECTED] Cc: mono-devel-list@lists.ximian.com Sent: Sunday, August 13, 2006 4:35 PM Subject: Re: [Mono-dev] [PATCH] EventLog implementation -Original Message- From: [EMAIL

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 mono-devel-list@lists.ximian.com Sent: Thursday, March 30, 2006 8:00 PM Subject: Re: [Mono-dev]

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

2006-03-29 Thread Matthijs ter Woord
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. - Original Message - From: Miguel de Icaza [EMAIL

Re: [Mono-dev] .WAPI folder

2006-01-19 Thread Matthijs ter Woord
size. When i would have a single application hosting several appdomains with different services (think of http, ftp, smtp, pop3, others), how would the .wapi directory contents behave then? Regards, Matthijs ter Woord ___ Mono-devel-list mailing list

[Mono-dev] .WAPI folder

2006-01-16 Thread Matthijs ter Woord
Hi, Is it desirable to have the .wapi directory on a in-memory filesystem? I mean, when having dozens of applications running (like web servers = xsp, ftp servers, and others), what size would the .wapi folder be in the worsed scenario? Regards, Matthijs ter Woord

[Mono-dev] Mono and OpenSSI

2006-01-16 Thread Matthijs ter Woord
Hi, Is it possible to make applications which are clustered on OpenSSI (think of network server applications)? Regards, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo

Re: [Mono-dev] UrlEncode difference in dotnet and mono

2006-01-03 Thread Matthijs ter Woord
Just use Char.MaxValue instead of 128 - Original Message - From: Ben Maurer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Mono-devel-list@lists.ximian.com; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, January 03, 2006 6:41 PM Subject: RE: [Mono-dev] UrlEncode difference in dotnet

Re: [Mono-dev] (Nevermind) Asp.net thread abort issue

2005-10-09 Thread Matthijs ter Woord
IMHO, TargetInvocationException is raised for EVERY exception raised by the Invoke() 'd method. - Original Message - From: Joshua Tauberer [EMAIL PROTECTED] Cc: mono-devel-list@lists.ximian.com Sent: Sunday, October 09, 2005 2:04 PM Subject: Re: [Mono-dev] (Nevermind) Asp.net thread

Re: [Mono-dev] Monodoc

2005-10-07 Thread Matthijs ter Woord
I think for this, we should add some attributes to the member elements in the docs, something like InNET1_0 for members in Fx 1.0, InNET1_1, for members in Fx 1.1, etc. Would this be an options? Miguel? When it would be, we would need to scan the complete documentation, and add those attributes.

Re: [Mono-dev] system class

2005-10-06 Thread Matthijs ter Woord
Well, you could always ask your employer :-) Greets, Matthijs ter Woord - Original Message - From: Will Weisser [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com Sent: Wednesday, October 05, 2005 7:20 PM Subject: RE: [Mono-dev] system class As I understand it the main

Re: [Mono-dev] system class

2005-10-05 Thread Matthijs ter Woord
Are there any WMI alternatives on linux (opensource/closed source)? - Original Message - From: Paolo Molaro [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com Sent: Wednesday, October 05, 2005 12:24 PM Subject: Re: [Mono-dev] system class On 10/04/05 marcos rocha wrote: does

Re: [Mono-dev] system class

2005-10-05 Thread Matthijs ter Woord
ter Woord wrote: Are there any WMI alternatives on linux (opensource/closed source)? An implementation of the Windows Management Instrumentation for Linux? :-) Rob ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] system class

2005-10-05 Thread Matthijs ter Woord
Hmm, how about OpenWBEM? WMI is supposed to be an implementation of the WBEM standard, OpenWBEM too. - Original Message - From: Rafael Ferreira [EMAIL PROTECTED] To: Matthijs ter Woord [EMAIL PROTECTED] Cc: mono-devel-list@lists.ximian.com; Robert Jordan [EMAIL PROTECTED] Sent

Re: [Mono-dev] system class

2005-10-05 Thread Matthijs ter Woord
I understand, but would an implementation of System.Management be compatible with WMI in the way of being able to connect to windows pc's too? Greets, Matthijs ter Woord - Original Message - From: Robert Jordan [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com Sent: Wednesday

Re: [Mono-dev] system class

2005-10-05 Thread Matthijs ter Woord
Hmm, of course i meant SHOULD instead of WOULD - Original Message - From: Matthijs ter Woord [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com; Robert Jordan [EMAIL PROTECTED] Sent: Wednesday, October 05, 2005 8:17 PM Subject: Re: [Mono-dev] system class I understand, but would

Re: [Mono-dev] Monodoc

2005-10-03 Thread Matthijs ter Woord
Is there any special format needed? (IE, ecma xml docs etc) If so, could anyone point me to it? Regards, Matthijs ter Woord - Original Message - From: Miguel de Icaza [EMAIL PROTECTED] To: Matthijs ter Woord [EMAIL PROTECTED]; mono-docs-list@lists.ximian.com Cc: [EMAIL PROTECTED

[Mono-dev] Building RPMS for FC4

2005-08-24 Thread Matthijs ter Woord
Hi, Are the files needed to build the RPMS available for download? Greets, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] mkbundle executables

2005-08-15 Thread Matthijs ter Woord
Hi, Is it reasonable to use mkbundle executables as CGI scripts in a production environment? I mean with regards to performance, tempfiles, security. Greets, Matthijs ter Woord ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-devel-list] Fw: Indy working on Mono and Nicer SSL integration on .NET

2005-06-18 Thread Matthijs ter Woord (meddochat)
See www.indyproject.org - Original Message - From: Matthijs ter Woord [Team Indy] [EMAIL PROTECTED] Newsgroups: atozedsoftware.indy.announcements Sent: Saturday, June 18, 2005 9:37 AM Subject: Indy working on Mono and Nicer SSL integration on .NET Hi, We've released a new build

Re: [Mono-devel-list] Preview of release notes.

2005-06-14 Thread Matthijs ter Woord (meddochat)
Miguel, You've forgotten the /P closing tags :P Greets, Matthijs - Original Message - From: RafaelMizrahi [EMAIL PROTECTED] To: 'Miguel de Icaza' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 4:30 PM Subject: RE: [Mono-devel-list] Preview of release notes.

Re: [Mono-devel-list] Mono.Xml.MiniParser

2005-06-11 Thread Matthijs ter Woord (meddochat)
weird if it really tries to validate(?) non-CLSCompliant types while it should not (MiniParser is not CLS compliant) and rejects them because of that. It sounds like a bug in Delphi.NET. Atsushi Eno Matthijs ter Woord (meddochat) wrote: Hi everybody, For the Indy project we use

Re: [Mono-devel-list] The Computer Language Shootout

2005-05-17 Thread Matthijs ter Woord (meddochat)
Looks great - Original Message - From: Isaac Gouy [EMAIL PROTECTED] To: mono-devel-list@lists.ximian.com Sent: Tuesday, May 17, 2005 5:54 PM Subject: [Mono-devel-list] The Computer Language Shootout now using Mono 1.1.7

[Mono-devel-list] Implemented DictionaryK,V

2005-02-27 Thread Matthijs ter Woord (meddochat)
Hi Everybody, I implemented DictionaryK,V, can someone take a look at it? greets, MatthijsBEGIN:VCARD VERSION:2.1 N:ter Woord;Matthijs FN:Matthijs ter Woord ORG:ter Woord Computers ADR;WORK:;;Lindenallee 22;Ellewick-Vreden;;48691;Germany LABEL;WORK;ENCODING=QUOTED-PRINTABLE:Lindenallee