Re: [Mono-dev] Mono 3.2.1 OS X Build on Mountain Lion with threads failure [libmonoruntime_la-threads.lo] Error 1

2013-08-07 Thread Zoltan Varga
Hi, Instead of CFLAGS=-m32, try configure --build=i386-apple-darwin11.2.0 or something. Zoltan On Wed, Aug 7, 2013 at 4:13 AM, Michael Franz mvfr...@gmail.com wrote: Hi, I download the latest tar file

Re: [Mono-dev] NancyFX self hosting (HttpListener) locking up on linux

2013-08-07 Thread Nikita Tsukanov
Huh, it doesn't require debugger to be _attched_, just debugging subsystem initialized i. e. if I launch this program as a debugger it doesn't lock up. public static void Main (string[] args) { int port = 27042; if (args.Length != 0) port = int.Parse (args [0]); while (true) { var

Re: [Mono-dev] NancyFX self hosting (HttpListener) locking up on linux

2013-08-07 Thread Greg Young
I believe attaching a debugger changes things like optimizations from occurring (not positive but it does in clr) On Wednesday, August 7, 2013, Nikita Tsukanov wrote: Huh, it doesn't require debugger to be _attched_, just debugging subsystem initialized i. e. if I launch this program as a

Re: [Mono-dev] New Property on System.Web.Hosting.HostingEnvironment

2013-08-07 Thread Atsushi Eno
From your message I assume you think you can wait for someone to implement it, but there is no one working on ASP.NET stack. So you are the most likely one who understand what it is and who is most able to implement it. Atsushi Eno Martin Thwaites wrote: I'm not sure of the best place to

Re: [Mono-dev] NancyFX self hosting (HttpListener) locking up on linux

2013-08-07 Thread Nikita Tsukanov
Ehm. Tried to run NancyFx with HttpListener on mono 2.10.8.1 (from ubuntu repos) on my desktop machine. No lockups. 2013/8/7 Nikita Tsukanov kek...@gmail.com I've rewritten my SCGI server to work with TPL directly instead of using async/await to make it run on mono 2.10. Then I've tried to

Re: [Mono-dev] NancyFX self hosting (HttpListener) locking up on linux

2013-08-07 Thread Alfred Hall
Tried running it with sgen or boehm on 2.10? Worth trying both I think. Also how about 3.3 (master) ? -Original message- From: Nikita Tsukanov kek...@gmail.com Sent: Wednesday 7th August 2013 12:54 To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] NancyFX self hosting

Re: [Mono-dev] NancyFX self hosting (HttpListener) locking up on linux

2013-08-07 Thread Andrés G. Aragoneses
If you're able to reproduce it with 3.3 and not with 2.10.x, you should definitely open a bug report for it in http://bugzilla.xamarin.com/ stating [regression] in the bug summary. Also, I would open a separate bug report for the segfault you're getting when running with MONO_DISABLE_AIO

Re: [Mono-dev] error executing the compiled EXE edited Mono Inside Windows Environment

2013-08-07 Thread Rafael Teixeira
Probably you didn't install gtk and gtk# on your windows machine, which is a dependency of your application. Exe files aren't self-contained apps, they depend on libraries and those need to either be installed globally in the system (as in this case because the gtk part is mixed native/managed

Re: [Mono-dev] error executing the compiled EXE edited Mono Inside Windows Environment

2013-08-07 Thread Daniel Lo Nigro
What was the exact error message you got? On Thu, Aug 1, 2013 at 3:49 AM, bpescarolli bruno.pescaro...@hotmail.comwrote: I created a HelloWord.exe (application interface gtk 2.0) in Mono within my Lubuntu 13.04 I caught this one Release executable tried run it on a machine with Win XP ..

Re: [Mono-dev] New Property on System.Web.Hosting.HostingEnvironment

2013-08-07 Thread Martin Thwaites
I didn't just plan on waiting, I've worked around it. The reason for the mail was to highlight it so that if anyone was working on that section they were aware that it could do with being added. It's something pretty fundamental to the building MVC sites, so if promoting mono to the wider MVC

Re: [Mono-dev] Mono 3.2.1 OS X Build on Mountain Lion with threads failure [libmonoruntime_la-threads.lo] Error 1

2013-08-07 Thread Michael Franz
Zoltan, Your suggestion worked! Thank you! How do we get the OS X build instructions updated? This is the page I was working from. http://mono-project.com/Compiling_Mono_on_OSX Michael On Wed, Aug 7, 2013 at 3:54 AM, Zoltan Varga var...@gmail.com wrote: Hi, Instead of CFLAGS=-m32, try

[Mono-list] WebRequest - OK in .NET, fails in Mono?

2013-08-07 Thread mickeyf
My Code: The Error: System.Net.WebException() Error getting response stream (Write: The authentication or decryption has failed.): SendFailure at System.Net.HttpWebRequest.EndGetRequestStream (IAsyncResult asyncResult) [0x0] in filename unknown:0 at

Re: [Mono-list] WebRequest - OK in .NET, fails in Mono?

2013-08-07 Thread mickeyf
OK, so apparently it was the same certificates issue, just a different error message. Solution was: Add: using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Net.Security; ( other than X509 these may have already been present - didn't check) In