Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-22 Thread Bernhard Urban
t: Wednesday, June 22, 2016 4:52 AM To: Алексей Богомолов; mono-list@lists.ximian.com Subject: Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception > From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of ??? ??

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-22 Thread Alan
eu...@microsoft.com>: > >> You can try to run mono without inlining: `mono -O=-inline [...]' >> >> >> -- >> *From:* mono-list-boun...@lists.ximian.com < >> mono-list-boun...@lists.ximian.com> on behalf of Alan < >> alan.mcgov...@gmail.com> >> *Sent:*

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-22 Thread Алексей Богомолов
Thanks! CA2200 exactly explains my confusion. In my real-life case DB driver re-throws its own exception and we loose the name of a query that caused error. It brings a lot of problems in production, when there are many queries in one batch. For me the question is closed, thanks again. Edward,

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-22 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of ??? ? > First, just to be sure you know, you *almost* should never catch and rethrow, because you're not adding new information. If you want to add new information, generally you

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-22 Thread Алексей Богомолов
`mono -O=-inline [...]' > > > -- > *From:* mono-list-boun...@lists.ximian.com < > mono-list-boun...@lists.ximian.com> on behalf of Alan < > alan.mcgov...@gmail.com> > *Sent:* Tuesday, June 21, 2016 2:33 AM > *To:* Алексей Богомолов > *

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-21 Thread Bernhard Urban
c: Mono List Subject: Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception This happens on .NET too. This gives a good description of what's happening and why. http://www.hanselman.com/blog/ReleaseISNOTDebug64bitOptimizationsAndCMethodInliningInReleaseBuildCallStack

Re: [Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-21 Thread Alan
hrow.M2 () [0x3] in > D:\source\TestApp\TestApp\ExceptionReThrow.cs:30 > > As you can see, mono looses stack between first and second catch > statements. What is the explanation for this feature? Can I disable it? > > > > > > _

[Mono-list] Mono does not include full stacktrace while rethrowing exception

2016-06-21 Thread Алексей Богомолов
This behavior makes difficult to troubleshoot errors, especially in external libraries. Example code: public class ExceptionReThrow{ public void Test(){ try { M1 (); } catch (Exception ex) { Console.WriteLine(ex); } }

Re: [Mono-list] Mono C# Console Application dies unexpectedly every ~20 minuts

2016-06-15 Thread akurilo
In addition the app is running as a service (/etc/init.d/), so i'm not connected to terminal and i don't see the app's output, the only thing i can do is watch the process using ps axg (or htop) or checkout the logs i write inside the program. -- View this message in context:

Re: [Mono-list] Mono C# Console Application dies unexpectedly every ~20 minuts

2016-06-15 Thread akurilo
Could you please tell me how can i check it out? It doesn't go to any of the evenhandlers i set up in my app, so i'm not sure how can i check it. -- View this message in context:

Re: [Mono-list] Mono C# Console Application dies unexpectedly every ~20 minuts

2016-06-14 Thread Chris Swiedler
@lists.ximian.com Subject: [Mono-list] Mono C# Console Application dies unexpectedly every ~20 minuts Hi, i've developed an application for raspberry pi (wheezy) using C# .Net it has a lot of code and about 5 active threads all the time, i've set up event handlers for ExitProcess, UnhandeledException

[Mono-list] Mono C# Console Application dies unexpectedly every ~20 minuts

2016-06-14 Thread akurilo
Hi, i've developed an application for raspberry pi (wheezy) using C# .Net it has a lot of code and about 5 active threads all the time, i've set up event handlers for ExitProcess, UnhandeledException, whatever events, but every 20 minutes my app dies with no warning or any message. I've spent

Re: [Mono-list] mono-core still required after using mkbundle --static to make executable

2016-03-09 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of Eugene Kobrinsky > > We finally got mkbundle --static to build a single executable of our > microservice, but when we move it to another machine, it fails to run unless > we install mono-core

Re: [Mono-list] mono-core still required after using mkbundle --static to make executable

2016-03-08 Thread Alexander Köplinger
and are at a dead end. > > We use bindingredirect in our app.config if that matters. > > Thanks, > > Eugene > ___ > Mono-list maillist - Mono-list@lists.ximian.com > <mailto:Mono-list@lists.ximian.com> > http://lists.ximian.com/mailman/listinfo/mono-list > <http://lists.ximian.com/mailman/listinfo/mono-list> ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] mono-core still required after using mkbundle --static to make executable

2016-03-08 Thread Eugene Kobrinsky
We're being slowly driven nuts by this [] We finally got mkbundle --static to build a single executable of our microservice, but when we move it to another machine, it fails to run unless we install mono-core (this is all on Cent0S 7 installs). I've included the error below, but it appears

Re: [Mono-list] mono with llvm build errors

2016-02-27 Thread flutos
It's been a while but I think I had some ok problems also. What I can do is raise a mono support issue and pass along the errors you were getting and see what they say and let you know. I should be able to get an answer by Monday anyhow Thanks yaakoub Scott Sent from Nine

[Mono-list] mono with llvm build errors

2016-02-27 Thread Yaakoub El Khamra
Greetings I am running into lots of problems building mono with llvm (from git) on fedora 21 with gcc 5.3.1. I am following directions here: http://www.mono-project.com/docs/advanced/mono-llvm/ and I configured mono with the following options: --enable-loadedllvm --enable-llvm

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-02-09 Thread George, Glover E ERDC-RDE-ITL-MS CIV
l>> Cc: "mono-list@lists.ximian.com<mailto:mono-list@lists.ximian.com>" <mono-list@lists.ximian.com<mailto:mono-list@lists.ximian.com>> Subject: Re: [Mono-list] Mono, Windows Forms, and Headless operation Hello, ThreadPools are available on .NET 2.0, just not the

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-02-09 Thread George, Glover E ERDC-RDE-ITL-MS CIV
m>" <mono-list@lists.ximian.com<mailto:mono-list@lists.ximian.com>> Subject: Re: [Mono-list] Mono, Windows Forms, and Headless operation Hi Miguel, Thanks for the response. After digging into the mono source a bit, as well as writing a few test programs, I’ve discovered a bit more.

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-02-08 Thread Miguel de Icaza
clarifications, or even just to say “Why would you want to do that?” > > Cheers. > — — — > Glover E. George > Computer Scientist > Information Technology Laboratory > US Army Engineer Research and Development Center > Vicksburg, MS 39180 > 601-634-4730 > > > _

Re: [Mono-list] Mono, C#, RaspberryPi2 and MS Azure

2016-02-05 Thread Edward Ned Harvey (mono)
Well, the one thing that's clear is "Invalid certificate received from server." You said it works on other systems, so most likely there isn't an *actual* problem with the certificate, so the question is why mono on the pi is rejecting it. Can you print the URL? From another system, we can

Re: [Mono-list] Mono, C#, RaspberryPi2 and MS Azure

2016-02-04 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of myusername > > Looks like you're getting TlsException, when fetching from the https server. Most likely this means you don't have

Re: [Mono-list] Mono, C#, RaspberryPi2 and MS Azure

2016-02-04 Thread myusername
I ran mozroots which copied 140 certificates to my raspberryPi and also certs-sync which copied 3. I cannot find the certificates directory to physically confirm they are there but Im still getting the same error. If I cant fix this Im going to have to switch from linux-raspbian to Win IOT Core

[Mono-list] Mono, C#, RaspberryPi2 and MS Azure

2016-02-03 Thread myusername
Hi, Im trying to download blobs from Azure using my Respberry Pi and Raspbian Jessie. The code is solid, it works fine on my desktop. It appears that mono does not have azure assemblies capability, but I read that you can use mono to access azure so I'm wondering if Im making a mistake? My code:

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-09 Thread Mladen Mihajlovic
nherits from a Windows Forms control? I don¹t need to see the form, > >> but if I¹m using BackgroundWorkers, I need the form's event handler, > >> don¹t I? > > > > > >BackgroundWorker does not depend upon System.Windows.Forms, i.e. > >it can use it headless. > > >

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-08 Thread Edward Ned Harvey (mono)
I think the advice would generally be: 1. Yes you can absolutely write a Console Application, which works perfectly cross-platform, and does not need any WinForms or X11. (Right click your solution, new project, Console Application). It's better to create a new project than to convert an

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-08 Thread George, Glover E ERDC-RDE-ITL-MS
Thanks Jordan. It turns out, I may have been conflating two problems into one. The fact that I needed to show the windows form was because I needed a message loop to process the BackgroundWorker¹s events. Turns out I can just call Application.Run() with no parameter, and it will cause the UI

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-08 Thread George, Glover E ERDC-RDE-ITL-MS
Hi Timotheus, Thanks for your reply. Unfortunately, changing from WinExe to Exe doesn¹t help as it still wants an X Display. Also, most of the business logic is separate from the gui . However, the multithreading uses Background Workers, which to my knowledge, requires an event loop to handle

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-08 Thread Robert Jordan
On 07.01.2016 22:24, George, Glover E ERDC-RDE-ITL-MS wrote: Hi all, We’re currently porting a Windows Forms Application to Mono, and have generally had great success. However, we have now hit a critical decision point, and were hoping for some guidance on the best route forward. If we don’t

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-08 Thread George, Glover E ERDC-RDE-ITL-MS
Again, I agree with the separation of business logic from the GUI. In fact, on mono, I never want to see the GUI. It¹s due to the fact that my parallelism relies on multiple concurrent BackgroundWorkers. I¹m restricted to .net 2.0 , nothing later. So I don¹t have the TPL available. I have

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-07 Thread netgear
I have been trying to port my windows winforms app to Mac.I have managed to port it successfully by replacing winforms with gtk#.Background worker has some issues when there was concurrent execution,i switched to threads ,threads gave some other issues so i switched back to background worker and

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-07 Thread Timotheus Pokorra
Hello George, > Question First: > The main question I had for the Mono list is this. Is it possible to have > mono run Windows Forms code without trying to open X11 (I.e. headless mode)? > What triggers mono to request an X11 display? Is it the project type? Is it > the call to an object that

Re: [Mono-list] Mono, Windows Forms, and Headless operation

2016-01-07 Thread Timotheus Pokorra
Hello Netgear, > -Mono(Mono.Mac not Xamarin.Mac) support is non existent.You can see this > forum is full of spam and rarely someone replies. I don't think the original poster is refering to Mono.Mac? X11 is not OSX ;) And the mono list itself is quite clean from spam. You are using the nabble

[Mono-list] Mono, Windows Forms, and Headless operation

2016-01-07 Thread George, Glover E ERDC-RDE-ITL-MS
Hi all, We’re currently porting a Windows Forms Application to Mono, and have generally had great success. However, we have now hit a critical decision point, and were hoping for some guidance on the best route forward. If we don’t have X11, mono fails to run Windows Forms code with the

[Mono-list] Mono Font Cache Location in Macintosh

2015-12-31 Thread rainbow cool
Hi, Where does Mono Build the font cache in Mac? I tried Looking in ~/Library/Caches  There is a Lag associated with building the font cache,im trying to overcome this. Thanks  ___ Mono-list maillist - Mono-list@lists.ximian.com

Re: [Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-09 Thread Jonathan Mitchell
> On 9 Nov 2015, at 00:22, sunsflower wrote: > > > and how can I pass a pointer to mono?... > > stuct test > { >int index; >string name; > }; > > > MonoMethod* method = mono_class_get_method_from_name(klass, "testfunc", 2); > MonoException* ex; > typedef

Re: [Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-08 Thread Jonathan Mitchell
> On 8 Nov 2015, at 02:41, sunsflower wrote: > > I've tried to use a monoclassfield but it doesn't work with a string array in > C#. the return value is invalide. > c++: > > MonoClassField* field; > field = mono_class_get_field_from_name(klass, "entry"); >

Re: [Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-08 Thread sunsflower
//I reckon that mono_field_get_value will return a MonoArray, //Try something a bit like this: // //MonoArray* monoArray = NULL; //mono_field_get_value(obj, field, monoArrayl); //MonoString *monoString = mono_array_get(monoArray, MonoString *, 0) //char *s = mono_string_to_utf8(monoString); //

Re: [Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-08 Thread sunsflower
thanks, it did work! only I need to pass a monoarray** to this function "mono_field_get_value(obj, field, );" . Mono is so poor documented, but it is really good! -- View this message in context:

[Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-07 Thread sunsflower
I've tried to use a monoclassfield but it doesn't work with a string array in C#. the return value is invalide. c++: MonoClassField* field; field = mono_class_get_field_from_name(klass, "entry"); char* val[100]; MonoString* monoval[100];

[Mono-list] Mono ASP.NET and Global.asax

2015-10-20 Thread Jérémy Carnus
Hi All, I successfully configured a apache2.4 + mod mono and mono-server-4. I managed to start the application , as I can test to browser the website and I see webform and all. But I have one major issue, the Global.asax is not trigered ? Do someone can have an idea ? The project has the

Re: [Mono-list] Mono throws "OutOfMemoryException" on Linux but Visual Studio does not on Windows

2015-10-02 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of Mohamadsoltani > > It's 2.10.2. > Do you now whether it is resolved in newer versions? I'm not saying your mono version is the problem, but that is very old (ancient), and it seems clear

Re: [Mono-list] Mono throws "OutOfMemoryException" on Linux but Visual Studio does not on Windows

2015-10-01 Thread William Ivanski
ral mailing list archive at Nabble.com. >> _______ >> Mono-list maillist - Mono-list@lists.ximian.com >> http://lists.ximian.com/mailman/listinfo/mono-list >> > > ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Mono throws "OutOfMemoryException" on Linux but Visual Studio does not on Windows

2015-10-01 Thread William Ivanski
-Windows-tp469.html > Sent from the Mono - General mailing list archive at Nabble.com. > ___ > Mono-list maillist - Mono-list@lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] Mono throws "OutOfMemoryException" on Linux but Visual Studio does not on Windows

2015-10-01 Thread Mohamadsoltani
Hi all, I need to run my C#-based code on a server with Linux. I am using Visual Studio on my pc, but now I should switch to mono on the server. I have tried to test my code by running a single job with mono. But there is a strange problem. When I run my code by directly using Visual Studio on my

Re: [Mono-list] Mono throws "OutOfMemoryException" on Linux but Visual Studio does not on Windows

2015-10-01 Thread Mohamadsoltani
It's 2.10.2. Do you now whether it is resolved in newer versions? -- View this message in context: http://mono.1490590.n4.nabble.com/Mono-throws-OutOfMemoryException-on-Linux-but-Visual-Studio-does-not-on-Windows-tp469p471.html Sent from the Mono - General mailing list archive at

Re: [Mono-list] Mono throws "OutOfMemoryException" on Linux but Visual Studio does not on Windows

2015-10-01 Thread William Ivanski
ml > Sent from the Mono - General mailing list archive at Nabble.com. > ___ > Mono-list maillist - Mono-list@lists.ximian.com > http://lists.ximian.com/mailman/listinfo/mono-list > ___ Mono-l

[Mono-list] Mono latest version

2015-09-29 Thread Angelo Compagnucci
Hello list, I'm looking for the latest mono version to download, but cannot understand which is the latest official mono version. The website says: The latest Mono release is: 4.0.4 SR 4 (4.0.4.1) But downloading from the tarball page the latest version seems to be mono 4.2.1.36 as well as on

Re: [Mono-list] Mono latest version

2015-09-29 Thread Timotheus Pokorra
Hello Angelo, Nowadays, the best source to know which are alpha, beta and stable releases, is the Xamarin release block: https://releases.xamarin.com for example, 4.2.1.36 is an Alpha preview: https://releases.xamarin.com/alpha-release-cycle-6-3rd-alpha-preview/ You find stable releases with

Re: [Mono-list] Mono Embedding - List enumeration

2015-07-28 Thread Robert Jordan
Hi, On 27.07.2015 19:53, Henry wrote: Can anyone shed some light on the best way to enumerate a List using mono embedding? I have a managed method that returns a List, I need to enumerate this list in c code using mono embedding. I can't seem to find any documentation or examples on this that

[Mono-list] Mono Embedding - List enumeration

2015-07-27 Thread Henry
Can anyone shed some light on the best way to enumerate a List using mono embedding? I have a managed method that returns a List, I need to enumerate this list in c code using mono embedding. I can't seem to find any documentation or examples on this that provide a definitive answer on how to do

[Mono-list] Mono 64 Bit Framework for Mac OS X Yosemite

2015-07-16 Thread Dave
Hi All, I’d like to use the Mono Framework coupled with Dubrovnik, but I can’t seem to figure out how to produce a 64 bit framework file. Firstly, is there a 64 Bit version of the Mono Framework available anywhere? If not, then I’m trying to follow the instructions at:

[Mono-list] mono/gtk on beagle bone black

2015-07-14 Thread Bill Swartz
We are looking at options for a UI on a beagle bone black for an embedded system. The UI and embedded system will be connected by RS232. Mono/gtk is one possibility. The lead for the UI development is concerned about system response. His note is copied below. Does any one know of resources for

Re: [Mono-list] Mono-list Digest, Vol 122, Issue 12

2015-06-23 Thread Evgeny Pirogov
Custom Command Mono Soft Debugger in mono 4.0.1 Hello, I have a problem with remote debugging my raspberry pi. When I add breakpoint to method the it does not stop and program runs to end. This problem reproduced for mono 4.0.1 but does not reproduced for mono 3.2.8 for example. I need to know

Re: [Mono-list] [Mono-dev] Cross-compiling Mono for ARM

2015-06-19 Thread Gutemberg Ribeiro
Yes… We was looking at it and looks that they changed lots of standard headers… Unfortunately, here in Brazil they don’t have a dev team, only in France and take ages to get a reply… Will try get them on table and see what we can do… Thank you, Best regards, Gutemberg From: Rafael Teixeira

Re: [Mono-list] Mono REST Service

2015-06-11 Thread Wayne Douglas
at Nabble.com. ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-29 Thread Zacharia Karami
To finalize this voyage into missing methods, here's my fix for any future (would-be) users of MapToIPv4/6. namespace ExtensionMethods { public static class IPextension { internal static object GetInstanceField (Type type, object instance, string fieldName)//Steals private values from

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-29 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Zacharia Karami To finalize this voyage into missing methods, here's my fix for any future (would-be) users of MapToIPv4/6. Why don't you submit it as a pull request for the mono source? Also,

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-22 Thread Edward Ned Harvey (mono)
From: Zacharia Karami [mailto:heatedphoe...@gmail.com] It works in 4.5 on Windows. But again, there is a problem (in so far that Oh! Ok, I get it. You should check the mono class compatibility page. Although *most* stuff in .Net is implemented in mono, there are areas where things are known

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-22 Thread Zacharia Karami
Thank you, this is indeed the conclusion I stumbled upon right before your previous email. My solution (for anyone else reading with this issue at some point) is to just implement the patch as produced by someone for the Mono project myself (as linked to here

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-21 Thread Zacharia Karami
Anyone else any ideas? On Tue, May 19, 2015 at 5:14 PM, Zacharia Karami heatedphoe...@gmail.com wrote: According to mono --version the version is 4.0.1. First thing I did was try to update mono. I've done apt-get update, upgrade and dist-upgrade. Regards, Zacharia On Tue, May 19, 2015

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-21 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Heatphoenix IPaddress. When targeting Mono 4.5 this function works just fine but when rolling it out to my Linux development environment the function throws After a bit of research, I've

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-19 Thread Zacharia Karami
According to mono --version the version is 4.0.1. First thing I did was try to update mono. I've done apt-get update, upgrade and dist-upgrade. Regards, Zacharia On Tue, May 19, 2015 at 5:09 PM, Timotheus Pokorra timotheus.poko...@solidcharity.com wrote: Hello, what version of mono do you

Re: [Mono-list] Mono on Linux and Missing methods

2015-05-19 Thread Timotheus Pokorra
Hello, what version of mono do you have? mono --version If it is the default that comes with Debian Wheezy, then it is probably too old (Mono 2.10.8) It might be advisable to install the packages provided by Xamarin (Mono 4.0.1): http://www.mono-project.com/download/#download-lin Also the

Re: [Mono-list] Mono GUI toolkits

2015-05-11 Thread Elmar Haneke
Hi, The lack of a true multiplatform toolkit for Mono is like a never.ending story. Gtk is an multi-platform-toolkit, you can use it on all important Desktop systems: Windows, MacOS and Linux. The only problem is that for CLI the transition from GTK2 to GTK3 is rather slow: GTK3 is out for

Re: [Mono-list] Mono GUI toolkits

2015-05-11 Thread Baltasar García Perez-Schofield
Hi, The lack of a true multiplatform toolkit for Mono is like a never.ending story. GTK isn't usually used anywhere except on Linux. Normally on the mac, you're using Xamarin.Mac, or MonoMac. Normally on windows, you're using WinForms or WPF. Definitely *don't* bother with winforms on

Re: [Mono-list] Mono GUI toolkits

2015-05-11 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Elmar Haneke Gtk is an multi-platform-toolkit, you can use it on all important Desktop systems: Windows, MacOS and Linux. The only problem is ... Let me stop you right there. Because to

Re: [Mono-list] Mono GUI toolkits

2015-05-11 Thread Rodrigo Kumpera
On Mon, May 11, 2015 at 9:45 AM, Edward Ned Harvey (mono) edward.harvey.m...@clevertrove.com wrote: From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Elmar Haneke Gtk is an multi-platform-toolkit, you can use it on all important Desktop

Re: [Mono-list] Mono GUI toolkits

2015-05-11 Thread Madars Vitolins
, because the GPL itself is one long-ass license, and the Lesser part almost doubles its length. It's not an attractive license, like MIT. ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] mono-fastcgi-server4 Debian package seems broken

2015-05-09 Thread Daniel Lo Nigro
I'm trying to upgrade from Mono 3.10 to Mono 4.0, and the Debian package for the FastCGI server appears to be broken. It's still got a version number of 3.8 rather than 4.0, and installing it returns this error: perl-modules : Breaks: mono-fastcgi-server4 ( 3.8-2.1) but 3.8-0xamarin2 is to be

[Mono-list] Mono-Tarballs

2015-05-06 Thread Elmar Haneke
In the sources download there is an 4.0.1 dated 2015-04-26 and an 4.0.0 dated 2015-05-05. Which one is the latest version? Elmar ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Mono-Tarballs

2015-05-06 Thread Timotheus Pokorra
Hello Elmar, have a look at the tags on Github: https://github.com/mono/mono/releases What I read on IRC was that 4.0.0 got the full QA and took longer, and 4.0.1 was a quick release with some important fix that needed to get out there before the fully tested 4.0.0 was released. Since 4.0.0 was

Re: [Mono-list] [mono][CPPSharp][GSoC'15] Introduction and asking for furthur guidance

2015-04-28 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Abhinav Tripathi         I am Abhinav Tripathi. I have been selected for CPPSharp - Inline C++ Code Improvement project under Mono... I have a good C++ experience and am new to C#. I am a 2nd

[Mono-list] [mono][CPPSharp][GSoC'15] Introduction and asking for furthur guidance

2015-04-27 Thread Abhinav Tripathi
Hello! I am Abhinav Tripathi. I have been selected for CPPSharp - Inline C++ Code Improvement project under Mono... I have a good C++ experience and am new to C#. I am a 2nd year B.Tech Student. I was looking for guidance on how to start the project and as a first step how to set-up my

[Mono-list] Mono performance with llvm is faster but crashes under load

2015-04-08 Thread Igor Birman
I need go get our code to run faster with mono on Linux, and we have been testing llvm.  It does improve speed, but crashes with a segmentation fault when we put it under load.  I'm having trouble figuring out what's blowing up, the core dump doesn't have much information in it.  What can I do

Re: [Mono-list] Mono performance with llvm is faster but crashes under load

2015-04-08 Thread Igor Birman
maillist  -  Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Mono performance with llvm is faster but crashes under load

2015-04-08 Thread Alexandre Faria
://lists.ximian.com/mailman/listinfo/mono-list ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Mono performance with llvm is faster but crashes under load

2015-04-08 Thread Alexandre Faria
problems so I can trace the source of this error? ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list ___ Mono-list maillist - Mono-list@lists.ximian.com

[Mono-list] Mono cross compilation on MIPS

2015-03-30 Thread Prashanth Mn
Hi all, Can anyone suggest me how can i cross compile Mono to the MIPS architecture (for SetTopBox device using Broadcom SoC) ? Is there any separate Mono package available for this MIPS architecture? What version of Mono i need to download. On Linux (Intel platform), i've used the sequence of

Re: [Mono-list] Mono in the mainstream

2015-03-24 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Tony Gravagno run over CentOS or Ubuntu, Apache or Nginx. They're used to mod_perl and mod_php, but not mod_mono, and they may support FastCGI. But they Right now, asp.net doesn't work out of

Re: [Mono-list] Mono-list Digest, Vol 119, Issue 16

2015-03-23 Thread mohamed magdi
Ubuntu user wants do see College videos that only works       with Silverlight (acrym)yes  Thanks regards mohamed magdiSales  DepartmentDirector of SalesRetal solution Developer Program Mobile: 002- 01005440676  Mobile: 002-01000409898E-Mail: : mohamed_magdi...@yahoo.com Web Site:

[Mono-list] Mono Embedding: How can I use a Generic Class from mscorlib.dll

2015-03-23 Thread LinWuxiang
Hello everybody. How can I instantiate a generic type, like ListString from mscorlib? I thought I should use “mono_class_from_generic_parameter”, but not sure how to use this function. Thanks for any hints and suggestions. Wuxiang___

Re: [Mono-list] Mono Embedding: How can I use a Generic Class from mscorlib.dll

2015-03-23 Thread LinWuxiang
. Wuxiang___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Mono Embedding: How can I use a Generic Class from mscorlib.dll

2015-03-23 Thread Robert Jordan
On 23.03.2015 15:13, LinWuxiang wrote: Hello everybody. How can I instantiate a generic type, like ListString from mscorlib? I thought I should use “mono_class_from_generic_parameter”, but not sure how to use this function. There used to be no embedding APIs for this in the past, and it

Re: [Mono-list] Mono in the mainstream

2015-03-23 Thread David Curylo
On Mar 23, 2015, at 3:14 PM, Jonathan Shore jonathan.sh...@gmail.com wrote: It should be mentioned that popular Linux distributions (such as ubuntu) have very dated versions of mono available as packages (often default to 2.x) They are kind of old, but not unusable 2.x versions anymore.

Re: [Mono-list] Mono in the mainstream

2015-03-23 Thread Jonathan Shore
application specifics. ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman

Re: [Mono-list] Mono in the mainstream

2015-03-23 Thread David Curylo
It's in a much better state than a few years ago, and even in the last 6 months with the CI and all the official packaging, I think it's easier than ever to get mono running. That said, I think it's really difficult to get service providers to include and advertise their servers with mono

[Mono-list] Mono in the mainstream

2015-03-23 Thread Tony Gravagno
After all of these years there are still very few shared hosts who support Mono. I'm talking about the typical LAMP provider of web space for small sites, with FTP, SSH, and other services for upwards of US$10/month. In addition to PHP, these hosts may support Java, Perl, and/or Ruby. They may

[Mono-list] Mono Socket Server drops clients when it does big operations

2015-03-22 Thread acrym
Mono 3.99 My socket server runs fine in Windows, but on Linux/Mono it drops a socket. Whenever the server runs an operation longer than a fraction of a second, the socket is disconnected, but occasionally the client stays connected. The client is Silverlight 4 and is run from Windows. More

[Mono-list] Mono

2015-03-19 Thread Mary Sweet
I wondered how can I help to add something interactive to Mono project by using mainly C# .. ___ Mono-list maillist  -  Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] Mono not using self closing tags.

2015-03-09 Thread MarxWright
I'm trying to remove the closing tag from my transformed document but it only creates a newline and full closing tags: item Data=XXX Data1=123.24 Num=3 /item As I have a lot of data I would prefer: item Data=XXX Data1=123.24 Num=3 / I cannot seem to find the solution anywhere. To annoy me more

Re: [Mono-list] [Mono-dev] Mono release headsup

2015-02-25 Thread Rodrigo Kumpera
Miguel merged a fix for that. I just cherry picked it to 4.0. On Tue, Feb 24, 2015 at 12:26 PM, Ariel Rocholl publ...@arocholl.com wrote: Great – hopefully he is still around and can answer. Otherwise which option B can work? Can I do a minor modification and re-submit as myself fix? Or

[Mono-list] Mono Projects Supporting Raspberry Pi 2 ?

2015-02-24 Thread bgreer5050
Are there any Mono Projects that allow GPIO access and that work on the Raspberry Pi 2 ? -- View this message in context: http://mono.1490590.n4.nabble.com/Mono-Projects-Supporting-Raspberry-Pi-2-tp4665519.html Sent from the Mono - General mailing list archive at Nabble.com.

Re: [Mono-list] [Mono-dev] Mono release headsup

2015-02-24 Thread Rodrigo Kumpera
The patch looks ok, but for it to be merge it must be released under the MIT license, so the author will have to do it. On Tue, Feb 24, 2015 at 4:52 AM, Ariel Rocholl publ...@arocholl.com wrote: Hi there, Could the fix proposed for bug #8207 be considered for the release? This was proposed

Re: [Mono-list] [Mono-dev] Mono release headsup

2015-02-24 Thread Rodrigo Kumpera
There's a PR that fixes the same issue using different ioctl. I can't make a call on which approach is the appropriate one since I'm not familiar with serial comm. On Tue, Feb 24, 2015 at 12:26 PM, Ariel Rocholl publ...@arocholl.com wrote: Great – hopefully he is still around and can answer.

[Mono-list] Mono release headsup

2015-02-23 Thread Rodrigo Kumpera
Hello everyone, We're branching mono for next release as we speak. We'll be able to easily merge community PR until March 6. After that it will have to go through our internal QA process, which raises the bar a lot and only release blockers can get in. I'll be handling the intake of community

[Mono-list] Mono 3.12 (mod_mono web service, Centos7)

2015-02-19 Thread Aleš Vojáček
Hi all, is there something new in configurations between mono 2.6.7 and mono 3.12 for accessing local filesystem. I have webservice which sending some files from server to client. Everything was ok on mono 2.67 but now I'm gettin Exception like : Could not find a part of the path

Re: [Mono-list] Mono 3.12 (mod_mono web service, Centos7)

2015-02-19 Thread Aleš Vojáček
@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Mono crashes on buttonpress

2015-02-04 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of MonoLoG But, while i have the KeePass-window selected, as soon as i press the 'windows button' mono crashes. This is a question for the keepass developers. Mono doesn't crash. Mono is an

[Mono-list] Mono crashes on buttonpress

2015-02-03 Thread MonoLoG
Hi, I'm using mono to run keepass on archlinux (i3wm) and it works very well. But, while i have the KeePass-window selected, as soon as i press the 'windows button' mono crashes. Since i have no clue about how mono works, i can not figure out what the error-messages really mean. Crash log:

  1   2   3   4   5   6   7   8   9   10   >