Re: [Mono-aspnet-list] How to install mono on Redhat Enterprise Linux 6?

2013-07-12 Thread Md. Solaiman
Hi, Thanks for reply. Please Tell me details how to meet my requirements. How I can proceed? Thanks Solaiman -- View this message in context: http://mono.1490590.n4.nabble.com/How-to-install-mono-on-Redhat-Enterprise-Linux-6-tp4660062p4660091.html Sent from the Mono - ASP.NET mailing list

Re: [Mono-aspnet-list] How to install mono on Redhat Enterprise Linux 6?

2013-07-12 Thread Md. Solaiman
Hi, For Redhat Enterprise Linux 6 Server which OS supported rpm I will download i.e: Uguntu or OpenSuse? Please reply Thanks Solaiman On 7/3/13, Md. Solaiman [via Mono] ml-node+s1490590n4660091...@n4.nabble.com wrote: Hi, Thanks for reply. Please Tell me details how to meet my

[Mono-aspnet-list] convert existing aspnet application to MONO framwork

2013-07-12 Thread maksudcs
hello every expertise. i have been working in asp.net, c# for 2 years. i have completed more than one web application. My existing application is running windows server. But now user requirement is that this application will be running in linux, windows and unix platform. these application are

[Mono-aspnet-list] Mono + Apache + Logrotate

2013-07-12 Thread JamesWright
I am using logrotate on my linux server to manage the size of the apache log files. The logrotate config causes it to issue a reload command to apache during a log rotation, however sometimes this apache reload seems to cause issues with my site running with mod_mono, where it will start producing

[Mono-dev] Building Mod_mono from Git

2013-07-12 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

[Mono-dev] Bug in SignedXml.GetIdElement

2013-07-12 Thread Jonathan Gagnon
I have encountered a bug similar to 4938https://bugzilla.xamarin.com/show_bug.cgi?id=4938 . My problem is that mono does not find the reference id because the id is in uppercase ('ID' instead of 'Id'). This works correctly on .NET. As stated in the bug description, the problem is in the

Re: [Mono-list] Mono for ARM Cortex-A8

2013-07-12 Thread Stifu
I don't know, but my understanding is that as long as an X11 server can run on it (and it seems like that's the case), then WinForms should work. Only one way to find out for sure: try it. rbaocug wrote Hello, as we know that Mono can support Winform applications, if we use Mono on ARM

Re: [Mono-list] Mono for ARM Cortex-A8

2013-07-12 Thread Bao Rui
Thanks, it seems that the only way is to try it, do we have any guide for adapt mono to ARM Linux platform? 2013/7/12 Stifu st...@free.fr I don't know, but my understanding is that as long as an X11 server can run on it (and it seems like that's the case), then WinForms should work. Only

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

2013-07-12 Thread Martin Thwaites
I've now tried with/without the = using the mod-mono-server4.exe directly, and no joy. Did you run your source directly from Git with all the latest commits? and if so, what date did you do it? Thanks On Fri, Jul 12, 2013 at 10:06 AM, Martin Thwaites monofo...@my2cents.co.ukwrote: Hi Mike,

[Mono-list] Mono 3 Windows installer missing from downloads page

2013-07-12 Thread 2PMEnterprises
http://download.mono-project.com/archive/3.0.10/windows-installer/mono-3.0.10-gtksharp-2.12.11-win32-0.exe It doesn't show up on the downloads page http://www.go-mono.com/mono-downloads/download.html I had to go back six months in my browsing history to find where I downloaded 3.0.3 Please keep

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

2013-07-12 Thread jonat...@mugginsoft.com
You must inflate the generic method upon invocation. IIRC, there is no function in the embedded API which does this. There is mono_class_inflate_generic_method() but this requires a MonoGenericContext. I am attempting to call the generic method ObjectSet.ToList(). The code below employs

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

2013-07-12 Thread Robert Jordan
Hi, On 12.07.2013 15:06, jonat...@mugginsoft.com wrote: // invoke the generic helper method MonoObject *monoException = NULL; void *hargs [2]; hargs [0] = methodInfo; hargs [1] = mono_type_get_object(env.monoDomain, genericParameterType); MonoMethod *genericMethod

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

2013-07-12 Thread jonat...@mugginsoft.com
You have to unbox the result of mono_runtime_invoke because it returns the IntPtr boxed in a MonoObject*. Something like that: MonoObject* obj = mono_runtime_invoke (...) MonoMethod* genericMethod = *(MonoMethod**) mono_object_unbox (obj); The above makes sense but it aborts with:

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

2013-07-12 Thread Robert Jordan
On 12.07.2013 21:43, jonat...@mugginsoft.com wrote: You have to unbox the result of mono_runtime_invoke because it returns the IntPtr boxed in a MonoObject*. Something like that: MonoObject* obj = mono_runtime_invoke (...) MonoMethod* genericMethod = *(MonoMethod**) mono_object_unbox (obj);

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

2013-07-12 Thread Martin Thwaites
Thanks Daniel, I've tried that now, and it seems that there might be a more underlying problem as I'm getting a similar error as the mod-mono-server, in that it appears to be passing the parameter name into the parameter value. So I think there is a problem with either: - My installation (not

Re: [Mono-list] secure credential storage

2013-07-12 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Edward Ned Harvey (mono) The goal is for an application to be able to securely store credentials (for example, credentials to access some online service. When you connect to a service, and

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

2013-07-12 Thread jonat...@mugginsoft.com
Hi On 12.07.2013 22:25, Robert Jordan wrote: To me, it looks like you want to inflate invoke to ToList on ObjectSetData.Employee which doesn't sound quite right to me. I'm rephrasing this :) It looks like you're inflating ToList with ObjectSetData.Employee instead of Data.Employee.

[Mono-list] Status of ProtectedData and ProtectedMemory

2013-07-12 Thread Edward Ned Harvey (mono)
The page on mono-project.com says there is partial support for ProtectedData and ProtectedMemory. I'd like to know if it's generally safe to assume it's supported on mac linux... Assuming at least mono version 2.10.x. ___ Mono-list maillist -