Re: [Mono-dev] Version Number: Bug in Mono with PKCS12 Certificates?

2013-05-12 Thread matthieu Barthélemy
Hi Munawar, On Sun, May 12, 2013 at 8:13 AM, Munawar Bijani munaw...@gmail.com wrote: Hi Everyone, I have a crt file and key file which I’ve merged into a pkcs12 file using OpenSSL on Linux. When I load this file into the X509Certificate2 object, I get an error: Unabel to decode

Re: [Mono-dev] mono 3.0

2012-10-31 Thread matthieu Barthélemy
Hi, On Wed, Oct 31, 2012 at 7:08 PM, Stack Pointer stackpoin...@me.com wrote: The release notes for mono 3.0 says: = Support for new attributes to force inlining. What attributes are these? I looked through MethodImplOptions.cs and method-to-ir.c, but it isn't obvious what this new

[Mono-dev] WCF NetTcpBinding doesn't seem to honor MaxReceivedMessageSize

2012-08-15 Thread matthieu Barthélemy
Hi all, My project uses WCF to perform remoting communications between a server and a client. Sometimes I have to transfer 'large' data (large meaning here more than the default max value). So to get transferts to work, I had to declare my binding with the following parameters: var binding = new

Re: [Mono-dev] completionPortThreads in threadpool.c not used?

2007-04-01 Thread Matthieu Barthélemy
Hello, On Sunday 01 April 2007 14:37, Robert Jordan wrote: The required infos are already available but they were not exposed by ThreadPool.GetMin|MaxThreads and SetMaxThreads was not implemented. The attached patches should fix that (up to the MonoTODO issues). Wow... I was prepairing

Re: [Mono-dev] System.Net.NetworkInformation.Ping

2007-03-26 Thread Matthieu Barthélemy
On Monday 26 March 2007 09:35, Antonello Provenzano wrote: Some time ago (before MS release of the utility shipped with .NET framework) I wrote a complete application for pings: I could try adapting it, since I've never released it and this could be a good use for it. I would really like to

Re: [Mono-dev] System.Net.NetworkInformation.Ping

2007-03-25 Thread Matthieu Barthélemy
On Sunday 25 March 2007 08:14, Miguel de Icaza wrote: We do not have plans of implementing the Ping method at this point. On Unix issuing Ping requires root privileges. For making this work, we would have to write a setuid program and launch it every time this call is made. Thanks for your