Re: [Mono-aspnet-list] Handling php in the same asp.net web site/application

2011-05-17 Thread Daniel J. Summers
On Mon, May 16, 2011 at 10:42 AM, moljac mcvje...@holisticware.net wrote: Is it possible and if yes, with wich server (it seems like lighthttpd colud do it) would be possible to process asp.net (aspx, asmx, ashx etc) and php in the same application/site?? ... Could it be made with apache

Re: [Mono-aspnet-list] Handling php in the same asp.net web site/application

2011-05-17 Thread Miljenko Cvjetko
Hi On 2011.05.17 19:23, Daniel J. Summers wrote: On Mon, May 16, 2011 at 10:42 AM, moljac mcvje...@holisticware.net mailto:mcvje...@holisticware.net wrote: Is it possible and if yes, with wich server (it seems like lighthttpd colud do it) would be possible to process asp.net

Re: [Mono-dev] excute linux command under mono C#

2011-05-17 Thread harmeets
Hi what will be exe and args here? Duane Wandless wrote: Here is a class that I use to execute linux commands: internal int Execute(string exe, string args) { ProcessStartInfo oInfo = new ProcessStartInfo(exe, args); oInfo.UseShellExecute = false;

Re: [Mono-dev] excute linux command under mono C#

2011-05-17 Thread nekresh
On Tue, May 17, 2011 at 12:03 PM, harmeets harmeet.si...@onebcg.com wrote: Hi what will be exe and args here? With your command : /bin/cp -rp /usr/local/lib/xsp/test/2.0/projectname/invoices/ /usr/local/lib/xsp/test/2.0/projectname/testupload/ The exe part will be /bin/cp and the args part will

[Mono-dev] System.Windows.Forms.Control doesn't select next control on enabled changed

2011-05-17 Thread Daniel Peñalba
Hi, I have reported a bug in the novell's bugzilla. https://bugzilla.novell.com/show_bug.cgi?id=694252 Please, tell me if this bug will be fixed soon or not. Thanks, Daniel ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] WebConnectionStream.Read() timeout downloading large files with Mono 2.10.1

2011-05-17 Thread Tom Philpot
Since switching to 2.10.1 for our app, we're seeing a lot more Read() timeouts when downloading large files (greater than 50 MB or so). I've created a small test program that reproduces the behavior. We've noticed that this bug is that it is more likely to happen on users systems who only

[Mono-dev] JIT register binding

2011-05-17 Thread Konrad M. Kruczyński
Hello all, lastly I was looking at n-body test on shootout (http://shootout.alioth.debian.org/u64q/performance.php?test=nbody) in the context of Mono. Program is very simple so it is a nice piece to analyze sources of performance problems. I've also contributed SIMD version, but it has

[Mono-list] mono project website and mailing list

2011-05-17 Thread Daniel Hughes
Who owns the URL and website www.mono-project.comhttp://www.mono-project.com/Main_Page http://www.mono-project.com/Main_PageWill it continue to be used or will there be a new website? Who owns and runs this mailing list? Will there be a new list? What about all the mono bugs that are in

Re: [Mono-list] ubuntu support

2011-05-17 Thread David Harper
Actually, I agree with Daniel, I think he is being both reasonable and forward thinking. There is an opportunity now to broaden Mono’s usage via Ubuntu. If Java can be deployed seamlessly across platforms why can’t Mono? On Ubuntu 10.10 we can install parallel versions of Mono, but we can’t

Re: [Mono-list] ubuntu support

2011-05-17 Thread Alan
Firstly, packages are already available for debian which means ubuntu ones shouldn't be much longer. http://www.meebey.net/posts/the_big_split_mono_2.10_debian_packaging/ Secondly, there are many reasons why debian packages take longer than opensuse packages. It mostly boils down to debian

Re: [Mono-list] Apache+mono+mod_mono_server with '--gc=sgen' fails on start-up

2011-05-17 Thread JZ
Has anyone had any luck with mod_mono and sgen? I'm just running into this problem. I'll attempt to reduce it to a reproducible test case, but would love any information anyone has in the meantime. Thanks! -- View this message in context:

Re: [Mono-list] ubuntu support

2011-05-17 Thread Stephen Shaw
On Mon, May 16, 2011 at 21:43, Daniel Hughes tramps...@gmail.com wrote: Currently all my volunteer time is going into Wide Margin. And I foresee it taking up all my time in the near future. However my suggestion is that the mono project drops open suse and instead supports ubuntu. This would

Re: [Mono-list] ubuntu support

2011-05-17 Thread Stephen Shaw
On Mon, May 16, 2011 at 22:54, Daniel Hughes tramps...@gmail.com wrote: How many of the mono team will want to continue to use an operation system from the company which has treated them so badly? Just to clarify, it wasn't openSUSE or SUSE that laid off the mono team. And to be technical, it

Re: [Mono-list] ubuntu support

2011-05-17 Thread David Harper
Hi Stephen, I apologize, I lacked clarity in my previous post. The Ubuntu issue mentioned by Daniel is a real problem, we're always versions behind and it's frustrating. In light of the recent changes, it is worth considering if an opportunity existed to address some of these issues. It would

Re: [Mono-list] ubuntu support

2011-05-17 Thread Stephen Shaw
On Tue, May 17, 2011 at 10:58, David Harper dahar...@hotmail.com wrote: Hi Stephen, I apologize, I lacked clarity in my previous post. The Ubuntu issue mentioned by Daniel is a real problem, we're always versions behind and it's frustrating. In light of the recent changes, it is worth

[Mono-list] Help with embedded mono: mono_runtime_object_init

2011-05-17 Thread Rod
We are presently evaluating embedded mono for use in an existing C++ project. The evaluation is taking place on windows, and with the help of some people on this forum previously, we have been successful in building mono, acquiring a .def file from git and generating a subsequent Visual Studio

Re: [Mono-list] ubuntu support

2011-05-17 Thread David Harper
I'm not sure anyone truly understands all the effort especially the initial effort it takes to get stuff packaged and pushed out I could only imagine, I prefer to develop software as I have the advantage of being able to copy other peoples code :) Let's hope the guys who lost their jobs are

Re: [Mono-list] Help with embedded mono: mono_runtime_object_init

2011-05-17 Thread Robert Jordan
Hi Rod, On 17.05.2011 19:20, Rod wrote: // Instantiate a class in .NET land MonoImage * image = ::mono_assembly_get_image(assembly); MonoClass * klass = ::mono_class_from_name(image,EmbeddedMonoExampleAssembly,ExampleClass); MonoObject* instance =

[Mono-list] HOW TO: Profile mod_mono

2011-05-17 Thread Abe Gillespie
It took me a while to figure out all the pieces involved to do this. I install parallel Mono environments so it's a little more complicated to get up running. I figured this might be helpful for others: Setting up the environment: export PATH=/usr/local/mono/current-version/bin:$PATH - XSP

Re: [Mono-list] ubuntu support

2011-05-17 Thread Thomas Mayer
Hi, I just wanted to add, that the guys and girls at Xamarin now have different priorities than to decide whether or not to change their default packaging system. They have to build a running business, have to migrate their infrastructure etc. Just my $0.02, Thomas -- When one's home has a

[Mono-list] Governance Structure of Mono

2011-05-17 Thread Ramneek Maan Singh
Hi All, I am a student at Australian National Universityhttp://cs.anu.edu.au/student/comp8440/. I am studying Mono as part of my project. One thing that I want to to know is the project governance structure and/or some hierarchy that exists in this project. I have read the FAQ and other