Re: [Mono-dev] how to improve mono performance

2005-11-18 Thread Peter 'Morcho' Morong
Hi I'm investigating mono performance regression and improvement. You can see some measurements on http://nenya.ms.mff.cuni.cz/projects/mono/index.phtml And I try to find which lines in source code cause differencies in performance. Peter ___

Re: [Mono-dev] how to improve mono performance

2005-11-18 Thread Ben Maurer
On Thu, 2005-11-17 at 23:32 -0800, zhu shi song wrote: I insist that performance is the key factor for key applications. For example, we now have one enterprise web query application. Every day between 8:30AM and 12:00AM, it serve about 2 requests. Now we use one P4 2.6G PC Server

Re: [Mono-dev] how to improve mono performance

2005-11-18 Thread Ben Maurer
On Fri, 2005-11-18 at 03:19 -0500, Ben Maurer wrote: Is your server using *all* it's cpu power for 1.5 requests/sec? Maybe you can make small optimizations in your application which will help it on either platform (I recently encountered a web application where submissions were taking 20

Re: [Mono-dev] Gnome.Vfs Initialization

2005-11-18 Thread Felipe Almeida Lessa
2005/11/18, Buderya Roshan [EMAIL PROTECTED]: That works. Thanks a lot. I still have one doubt. When I call Gnome.Vfs.Vfs.Shutdown, Is only my application affected or is the effect global? What I mean to say is that if there are 2 programs using Gnome.Vfs and one of the calls Vfs.Shutdown

Re: [Mono-dev] [PATCH] Read System.Net proxy server address from environment

2005-11-18 Thread Michael Hutchinson
Is it okay to commit now? I don't have a direct internet connection here, so if someone could double-check that it definately works without a proxy that would be nice. Looks like this slipped through the net. Can someone review it? Thanks Michael

[Mono-dev] http header generation

2005-11-18 Thread Ivano Luberti
I'm writing a Web Service Client using mono 1.1.9.2 When I try to consume my target WS I have two different behaviours when I compile may classes using Mcrosoft .NEt Framework and Mono. I looked at the message the client sends using the two different run time and compiler and I found that the

[Mono-dev] ANNOUNCE: Ice 3.0 released

2005-11-18 Thread Michi Henning
Hi, we've just released Ice 3.0. (For those of you who haven't heard of it, it's a multi-language and multi-platform middleware.) Some highlights: improved C# and VB mapping and a new grid service. And, of course, it works with the latest Mono :-) See

Re: [Mono-dev] [PATCH] Read System.Net proxy server address from environment

2005-11-18 Thread Gonzalo Paniagua Javier
On Fri, 2005-11-18 at 09:45 +, Michael Hutchinson wrote: Is it okay to commit now? I don't have a direct internet connection here, so if someone could double-check that it definately works without a proxy that would be nice. Looks like this slipped through the net. Can someone review

Re: [Mono-dev] ANNOUNCE: Ice 3.0 released

2005-11-18 Thread ted leslie
nice timing, i was just looking at C#/mono CORBA products, and your annoncement obviously has me checking out your product. I guess i'd like to know (totally no biased :) ) how stable it is on mono. Looks like the project is mature, but the C# side of the product? Any comments on current user

[Mono-dev] addins to mcs?

2005-11-18 Thread Alexandre Miguel Pedro Gomes
I was wondering if it would be possible to develop plugplay addins to mcs? My ideia to make it possible to developer to extent mcs to their needs, an example would be to make mcs to translate a SQL query to a object model... Any ideas?-- Alexandre Gomes, Portugal

Re: [Mono-dev] how to improve mono performance

2005-11-18 Thread Miguel de Icaza
Hello, From the measurements I've taken, MS .NET is generally 2 to 3 times faster than Mono, both using micro-benchmarks and applications that do real work. It is easy to spot performance issues with micro-benchmarks, and we typically use these to do some of our development work. For large

Re: [Mono-dev] addins to mcs?

2005-11-18 Thread Miguel de Icaza
Hello, I was wondering if it would be possible to develop plugplay addins to mcs? My ideia to make it possible to developer to extent mcs to their needs, an example would be to make mcs to translate a SQL query to a object model... You might want to look at what the fine folks at DB4O have

[Mono-dev] iptables possible log4net issue?

2005-11-18 Thread Carlos Solorzano
I have a bit of code working on Linux for a while now, it all uses log4net. We made a DROP everything unless specified firewall with iptables, and all my programs quit working, I notice they would quit responding on the first call where log4net is configured. I then ran: iptables -A INPUT

Re: [Mono-dev] XSP debugging

2005-11-18 Thread Carlos Solorzano
On Nov 16, 2005, at 4:43 PM, Marek Habersack wrote: On Wed, Nov 16, 2005 at 11:00:05AM -0600, Carlos Solorzano scribbled: Whats the easiest way to do some debugging of XSP, is there a way to turn on logs for XSP? personally I use log4net (catches also Console.Write/WriteLine) with the

Re: [Mono-dev] XSP debugging

2005-11-18 Thread Marek Habersack
On Fri, Nov 18, 2005 at 04:12:36PM -0600, Carlos Solorzano scribbled: On Nov 16, 2005, at 4:43 PM, Marek Habersack wrote: On Wed, Nov 16, 2005 at 11:00:05AM -0600, Carlos Solorzano scribbled: Whats the easiest way to do some debugging of XSP, is there a way to turn on logs for XSP?

RE: [Mono-dev] how to improve mono performance

2005-11-18 Thread Maxime de Lavenne
I'd like to point out that the arrival of his requests probably follows a poisson distribution anyway. In which case, his probability of getting more than 9 requests per second is null. So, it stays really reasonable... And WAY under the limit of 732 req/sec for ASP that Miguel just mentioned.

Re: [Mono-dev] XSP debugging

2005-11-18 Thread Carlos Solorzano
On Nov 18, 2005, at 4:21 PM, Marek Habersack wrote: On Fri, Nov 18, 2005 at 04:12:36PM -0600, Carlos Solorzano scribbled: On Nov 16, 2005, at 4:43 PM, Marek Habersack wrote: On Wed, Nov 16, 2005 at 11:00:05AM -0600, Carlos Solorzano scribbled: Whats the easiest way to do some debugging of

[Mono-dev] AppDomain major problem

2005-11-18 Thread José Alexandre Antunes Faria
Hi there guys, Some of you were bothered by me on the IRC regarding a bug on AppDomain. I was trying to create a clean AppDomain, but mono for some reason copies the assemblies in the current domain. So I was getting my own executable assembly in my new AppDomain. After ours of reading mostly