Re: [Mono-dev] Serial Port Reading

2014-12-08 Thread Ivo Smits
Hello, I use the serial port class a lot, but always through the synchronous Read and Write methods. This works great. Looking at the mono source code for the SerialPort class, the events seem to exist, but are not called from anywhere, so they are probably not yet implemented (as is stated

Re: [Mono-dev] PR1375: cleanup

2014-12-08 Thread Etienne Champetier
Hi, just a ping, i've updated the PR 2014-10-30 4:42 GMT+01:00 Rodrigo Kumpera kump...@gmail.com: I know that :) is in there. On Tue, Oct 28, 2014 at 11:16 AM, Greg Young gregoryyou...@gmail.com wrote: Can I buy a vowel? On Tuesday, October 28, 2014, Miguel de Icaza mig...@xamarin.com

[Mono-dev] Event logging under Mono

2014-12-08 Thread Spyros Sakellariadis (MS OPEN TECH)
[Sorry if duplicate. I think I originally sent to wrong alias] Hi - I am trying to implement logging for a small application running under Mono on a Raspberry Pi. Unfortunately I have been unable to create an event log despite following guidance that I have found on the Net, and am wondering

Re: [Mono-dev] Event logging under Mono

2014-12-08 Thread Alexander Köplinger
I'd just use a proper logging framework like NLog (http://nlog-project.org/) instead of using the rather Windows-specific event log implementation. -- Alex From: spy...@microsoft.com To: mono-devel-list@lists.ximian.com Date: Mon, 8 Dec 2014 22:38:26 + Subject: [Mono-dev] Event logging

Re: [Mono-dev] Serial Port Reading

2014-12-08 Thread techi eth
Thanks for input.. Is their any plan or update in Mono available in which event is working with serial port ? Thanks On Mon, Dec 8, 2014 at 4:50 PM, Ivo Smits i...@ufo-net.nl wrote: Hello, I use the serial port class a lot, but always through the synchronous Read and Write methods. This

[Mono-dev] Proposed changes to mono/mcs/class/corlib/Mono/DataConverter.cs

2014-12-08 Thread Michael McGlothlin
Couldn't figure out how to get Xamarin Studio to create an actual patch file after trying, and failing, to push a change with git. It appears this is the correct place to post this? I usually put most of my code in PCL and then call it from platform specific code so I'm trying to make

Re: [Mono-dev] Proposed changes to mono/mcs/class/corlib/Mono/DataConverter.cs

2014-12-08 Thread Stephen Shaw
I can't comment on the code changes themselves, but it would be helpful to fork mono on github and then create a Pull Request (PR) with your changes. Cheers, Stephen On Mon, Dec 8, 2014 at 8:54 PM, Michael McGlothlin mike.mcgloth...@gmail.com wrote: Couldn't figure out how to get Xamarin

[Mono-list] Differences in GetHashCode() of Type between .NET and Mono

2014-12-08 Thread Hüning , Christian
Hi there, I am using Mono alongside .NET in larger Deployments. Just recently I wanted to use GetHashCode() of the type of an object to start a little algorithm on each node, which needs to produce the same result when the same type’s hashcode (or another equivalent information) is used.

Re: [Mono-list] Differences in GetHashCode() of Type between .NET and Mono

2014-12-08 Thread Robert Jordan
On 08.12.2014 09:21, Hüning, Christian wrote: However I found that Mono and .NET produce different hashcodes for the same type from the same DLL. On second thought, this is very clear to me, since up to recently we could have no idea how the GetHashCode() implementation in .NET looks like.

Re: [Mono-list] Differences in GetHashCode() of Type between .NET and Mono

2014-12-08 Thread Kornel Pal
On 12/8/2014 9:21 AM, Hüning, Christian wrote: I am using Mono alongside .NET in larger Deployments. Just recently I wanted to use GetHashCode() of the type of an object to start a little algorithm on each node, which needs to produce the same result when the same type’s hashcode (or another

[Mono-list] Disable SSL v2 and v3

2014-12-08 Thread cocowalla
I'm using ServiceStack.NET, self-hosted, which uses HttpListener under the hood. For security reasons, I want to disable SSL v2 and v3, and enable TLS 1.2. On Windows, Schannel is used for SSL/TLS support, and protocol support is configured by changing registry entries under

Re: [Mono-list] Differences in GetHashCode() of Type between .NET and Mono

2014-12-08 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of Hüning, Christian I am using Mono alongside .NET in larger Deployments. Just recently I wanted to use GetHashCode() of the type of an object to start a little algorithm on each node, which

Re: [Mono-list] Disable SSL v2 and v3

2014-12-08 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of cocowalla I'm using ServiceStack.NET, self-hosted, which uses HttpListener under the hood. For security reasons, I want to disable SSL v2 and v3, and enable TLS 1.2. On Windows, Schannel

Re: [Mono-list] Disable SSL v2 and v3

2014-12-08 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of cocowalla For security reasons, I want to disable SSL v2 and v3, and enable TLS 1.2. Oh, um... Mono supports up to TLS 1.0. Does not have support for 1.1 or 1.2. So in fact, TLS v1.0 is the

Re: [Mono-list] Disable SSL v2 and v3

2014-12-08 Thread cocowalla
Great, that did the trick! As well as disabling weak ciphers, it also disabled support for SSL v3, leaving only support for TLS 1.0. Are there any plans to implement TLS 1.1 and/or 1.2? -- View this message in context:

Re: [Mono-list] Differences in GetHashCode() of Type between .NET and Mono

2014-12-08 Thread Hüning , Christian
Thanks very much for the hint to FNV! It exactly solves my problem! Von: Kornel Pal [mailto:kornel...@gmail.com] Gesendet: Montag, 8. Dezember 2014 11:34 An: Hüning, Christian; mono-list@lists.ximian.com Betreff: Re: [Mono-list] Differences in GetHashCode() of Type between .NET and Mono