[Mono-dev] Re: [Mono-list] Re: Mono.Unix Filename Marshaling

2005-10-26 Thread Jonathan Pryor
On Wed, 2005-10-26 at 08:08 +0200, Florian Weimer wrote: > It seems that the UTF-8 decoder treats the byte sequence EF BF BF as > invalid. Doesn't this mean that with your changes, it is encoded as > 00EF 00BF 00BF on the Mono side? The UTF-8 decoder doesn't treat EF BF BF as inval

[Mono-dev] Error consuming web services

2005-10-26 Thread Johann BLAIS
Hi, I've been using webservices for quite some time, and now i face a strange problem. I use generated proxies to access my web services. I get an error : System.Net.WebException: Error getting response stream (ReadDone4): ServerProtocolViolation ---> System.FormatException: Invalid format. i

[Mono-dev] System.Data: SqlExpressions In.Equals patch

2005-10-26 Thread Konstantin Triger
Hello all,   The attached patch fixes the enumerator initialization problem (IEnumerator.MoveNext should be called prior to IEnumerator.Current).   Please reply if someone objects, otherwise I’ll commit.   Regards, Konstantin Triger   in.diff Description: in.diff ___

[Mono-dev] Patch for System.Runtime.Serialization.Formatters.Soap/SoapTypeMapper.cs

2005-10-26 Thread Svetlana Zholkovsky
Hi all, I encountered two problems with the SoapTypeMapper class: - First, in the deserialization of the MethodSignature element for the overloaded method without parameters. In this case the xml element in the stream is empty and the MethodSignature.ReadXmlValue method returns null and the d

Re: [Mono-dev] Status of ADO.NET 2.0 implementation

2005-10-26 Thread Carlos Guzmán Álvarez
Hello: We have not spent a lot of time working on this area, do you have some specifics about what is missing? Ok, the first thing ( thinking in that the actual version of the firebird provider for .net 2.0 matches the beta 2 of it ) DbException class should be in the System.Data.Common namesp

[Mono-dev] System.Collections.Specialized: compatibility

2005-10-26 Thread Robert Jordan
Hi, The serialization changes to HybridDictionary ListDictionary NameValueCollection made after 1.1.9.2 are incompatible with mono 1.1.9.2 and older. I assume you are aware of that, but don't forget to update the release notes. Rob ___ Mono-devel-l

[Mono-dev] Re: [Mono-patches] r52237 - trunk/mcs/class/System/System.Collections.Specialized

2005-10-26 Thread Gonzalo Paniagua Javier
On Wed, 2005-10-26 at 06:47 -0400, Svetlana Zholkovsky ([EMAIL PROTECTED]) wrote: > + private IDictionary inner > + { > + get > + { > + if (list != null) > + return list;

Re: [Mono-dev] Error consuming web services

2005-10-26 Thread Gonzalo Paniagua Javier
On Wed, 2005-10-26 at 14:16 +0200, Johann BLAIS wrote: [...] > System.Net.WebException: Error getting response stream (ReadDone4): > ServerProtocolViolation ---> System.FormatException: Invalid format. > in <0x00103> System.UInt32:Parse (System.String s, Boolean tryParse, > System.UInt32 result)

Re: [Mono-dev] Re: [Mono-list] Re: Mono.Unix Filename Marshaling

2005-10-26 Thread Michal Moskal
On 10/26/05, Jonathan Pryor <[EMAIL PROTECTED]> wrote: > I'm hoping that this scenario is sufficiently rare that things will Just > Work. If it isn't, I'll have to find a different escape character. > How's U+0001 sound (control character, START OF HEADING)? Something > else? How about U+? I

[Mono-dev] System.Console.CancelKeyPress

2005-10-26 Thread Andy Waddell
System.Console.CancelKeyPress does not seem to be implemented yet.  Is there something I can do using Mono.Unix or otherwise to handle Cntl-C in a Linux Mono command line app? ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] System.Console.CancelKeyPress

2005-10-26 Thread Robert Jordan
Andy, System.Console.CancelKeyPress does not seem to be implemented yet. Is there something I can do using Mono.Unix or otherwise to handle Cntl-C in a Linux Mono command line app? Ignoring SIGINT (Ctrl-C) is the only operation you can do at present. Rob // // compile with: mcs -r:Mono.Posi

Re: [Mono-dev] Re: [Mono-list] Re: Mono.Unix Filename Marshaling

2005-10-26 Thread Jonathan Pryor
On Wed, 2005-10-26 at 19:25 +0200, Michal Moskal wrote: > On 10/26/05, Jonathan Pryor <[EMAIL PROTECTED]> wrote: > > I'm hoping that this scenario is sufficiently rare that things will Just > > Work. If it isn't, I'll have to find a different escape character. > > How's U+0001 sound (control chara