[Mono-aspnet-list] [ANN] Mono buildpack for ASP.NET and OWIN apps

2013-07-11 Thread Michael Friis
In case anyone is interested, I've created a buildpack that makes it easy to run ASP.NET and OWIN apps on various Cloud Platforms. My hope is that this is going to make Mono a more popular choice for hosting ASP.NET other .NET apps in the cloud. The buildpack is here:

[Mono-dev] Building XSP/mod_mono from Git

2013-07-11 Thread Martin Thwaites
Can anyone tell me if the mod_mono on github is supposed to working with Apache? To be a bit clearer, I've always run mono with the packages for ubuntu, but wanted to try out 3.0 so I've set about building from source. the current sources all build perfectly fine, however, there appears to be

Re: [Mono-dev] Help required on starting to contribute for mono for a newcomer

2013-07-11 Thread Greg Najda
What specific problems are you running into? On Wed, Jul 10, 2013 at 9:02 PM, Aravindh Sridharan yashvi...@gmail.comwrote: Hi All, I have been a .NET developer for the past 3 years and I am in complete love with C#. I was very interested in mono from the beginning but only now got a

[Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread mugginsoft
Hi I have a MonoAssembly pointer to System.Core. I obtain a MonoClass pointer to System.Linq.Enumerable with the above assembly. This is a static class used to implement LINQ functionality via extensions. I write the method names to the console. The signature of the the method I want, ToList() is

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread Robert Jordan
On 11.07.2013 13:55, mugginsoft wrote: Hi I have a MonoAssembly pointer to System.Core. I obtain a MonoClass pointer to System.Linq.Enumerable with the above assembly. This is a static class used to implement LINQ functionality via extensions. I write the method names to the console. The

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread mugginsoft
Robert Jordan wrote It works for me using both mono_class_get_method_from_name () and mono_method_desc_search_in_class (). I am still having issues: // get a reference to the System.Core assembly MonoAssemblyName *monoAssemblyName = mono_assembly_name_new(System.Core); MonoAssembly

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread Robert Jordan
On 11.07.2013 15:31, mugginsoft wrote: Robert Jordan wrote It works for me using both mono_class_get_method_from_name () and mono_method_desc_search_in_class (). I am still having issues: // get the method const char *methodName =

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread mugginsoft
Robert Jordan wrote This must be :ToList(System.Collections.Generic.IEnumerable`1) Hmm. This still aborts with me. My setup is OS X 10.8.4 running 32bit Mono 3.0.10 and the v4.0.30319 runtime. Jonathan -- View this message in context:

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread Robert Jordan
On 11.07.2013 15:53, mugginsoft wrote: Robert Jordan wrote This must be :ToList(System.Collections.Generic.IEnumerable`1) Hmm. This still aborts with me. Now I see why: you're using mono_class_get_method_from_name () and this function expects nothing more than the simple method name. Try

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread mugginsoft
Robert Jordan wrote Try mono_class_get_method_from_name (ToList, 1) or create a descriptor from :ToList(System.Collections.Generic.IEnumerable`1). Thanks. mono_class_get_method_from_name (ToList, 1) does resolve. However: My actual implementation is via Dumbarton which uses

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread mugginsoft
Robert Jordan wrote Oops, my test actually passes with: :ToList(System.Collections.Generic.IEnumerable`1 TSource ) Thanks. I thought I had tried all the combinations - I should have been more methodical! I wonder why the method name querying functions provide a different sig? However

Re: [Mono-list] Embedded API: Method signature not found with generic parameter

2013-07-11 Thread Robert Jordan
On 11.07.2013 21:08, mugginsoft wrote: Robert Jordan wrote Oops, my test actually passes with: :ToList(System.Collections.Generic.IEnumerable`1 TSource ) Thanks. I thought I had tried all the combinations - I should have been more methodical! I wonder why the method name querying

Re: [Mono-list] Using mod-mono from source

2013-07-11 Thread Martin Thwaites
So I've got a little further in debugging. I think this has to do with loading applications from the commandline maybe? I've tried running this command (looks like this is what mod_mono is trying to run: /usr/bin/mod-mono-server4 --filename=/tmp/mod_mono_server_test

Re: [Mono-list] Using mod-mono from source

2013-07-11 Thread Mike Morano
Hi Martin, Sorry, you are still running into problems. You are right, if you are using /usr as your prefix, you shouldn't need to worry about the ld.conf.so.d entry. When I look at the command on my running webserver, I see the following: /opt/mono-3.0/bin/mono

[Mono-list] Mono for ARM Cortex-A8

2013-07-11 Thread Bao Rui
Hello, as we know that Mono can support Winform applications, if we use Mono on ARM Cortex-A8, does it support Winform application also, or we mush use GTK# for the GUI programming. Thanks a lot! Best Regards, Henry ___ Mono-list maillist -

[Mono-list] [ANN] Mono buildpack for ASP.NET and OWIN apps

2013-07-11 Thread Michael Friis
In case anyone is interested, I've created a buildpack that makes it easy to run ASP.NET and OWIN apps on various Cloud Platforms. My hope is that this is going to make Mono a more popular choice for hosting ASP.NET other .NET apps in the cloud. The buildpack is here: