[Mono-dev] ConfigurationElementCollection.ThrowOnDuplicate

2006-12-22 Thread Atsushi Eno
Hi, I have been trying to fix some web service config stuff, and noticed that ConfigurationElementCollection.ThrowOnDuplicate property behavior is somewhat different from .net (the attached example does not raise an error on .net while mono does). According to the documentation, I believe that

[Mono-dev] UnixStream Patch

2006-12-22 Thread R. Tyler Ballance
I know I've talked about the desire for this simple addition to the UnixStream class with Alp before, but I have found a need for it elsewhere.All this does is exposes the internal bool ownsHandle as a property, so it can be modified after instantiation, instead of only in the UnixStream(int,

Re: [Mono-dev] VMware Image Update - Mono 1.2.2.1 and openSUSE 10.2

2006-12-22 Thread Alex Chudnovsky
I would like to just say BIG thank you for creating and maintaining VMware image with Mono - this made my life much easier as I don't have to struggle with Linux configurations and can just use it to verify Mono targeted builds, this is definitely helping to encourage supporting Mono as it is

Re: [Mono-dev] UnixStream Patch

2006-12-22 Thread Jonathan Pryor
On Fri, 2006-12-22 at 03:42 -0600, R. Tyler Ballance wrote: I know I've talked about the desire for this simple addition to the UnixStream class with Alp before, but I have found a need for it elsewhere. Could you tell us what the need is? I can't think of any scenarios in which it would be

Re: [Mono-dev] UnixStream Patch

2006-12-22 Thread R. Tyler Ballance
On Dec 22, 2006, at 8:13 AM, Jonathan Pryor wrote: On Fri, 2006-12-22 at 03:42 -0600, R. Tyler Ballance wrote: I know I've talked about the desire for this simple addition to the UnixStream class with Alp before, but I have found a need for it elsewhere. Could you tell us what the need is?

Re: [Mono-dev] Problem with parameters using Odbc/ADO.NET/Sybase 9.0.2 ASA

2006-12-22 Thread Daniel Morgan
I'm only guessing here. Are you using an ODBC driver for Sybase ASA from Sybase? Have you tried using the FreeTDS ODBC driver? What ODBC manager are you using? unixODBC, iODBC? To be honest, I don't think anyone has tested the Mono's Odbc provider with Sybase ASA. If there is not a bug for

Re: [Mono-dev] SQL query encoding problem using mod_mono

2006-12-22 Thread Ronan
Hi, I try many solution as changing database encoding, page encoding or default language encoding. And the same compiled web application give different result on XSP and apache with mod_mono. Now I'm using MySql.Data.dll, not bytefx.data.mysql anymore, and all works fine !!! :-)

Re: [Mono-dev] UnixStream Patch

2006-12-22 Thread Miguel de Icaza
Hello, I know I've talked about the desire for this simple addition to the UnixStream class with Alp before, but I have found a need for it elsewhere. All this does is exposes the internal bool ownsHandle as a property, so it can be modified after instantiation, instead of only in the

Re: [Mono-dev] ConfigurationElementCollection.ThrowOnDuplicate

2006-12-22 Thread Konstantin Triger
Title: RE: [Mono-dev] ConfigurationElementCollection.ThrowOnDuplicate Hi Atsushi, I think it should be like this: protected void BaseAdd (ConfigurationElement element, bool throwIfExists) { - if (throwIfExists BaseIndexOf (element) != -1) -throw new ConfigurationException

[Mono-dev] System.IO or Mono.Unix

2006-12-22 Thread Luciano _
Hi. First: I'm developing an application that use System.IO and i read that there are some IO operation classes in the Mono.Unix namespace. Which is the best solution? System.IO or Mono.Unix? I'm developing a Linux-Only Application. Second: Could someone explain (example) how

[Mono-dev] corlib tests broken under net_2_0 profile

2006-12-22 Thread Marek Sieradzki
Hi, as you can see here: http://pastebin.ca/288704 and in mono.ximian.com/monobuild - x86 - latest build - test_profiles Mono writes some weird warnings and fails 2-4 tests in corlib. I'm not sure when it started to happen. I ran those tests on r69950. -- Marek Sieradzki [EMAIL PROTECTED]

Re: [Mono-dev] System.IO or Mono.Unix

2006-12-22 Thread Jonathan Pryor
On Fri, 2006-12-22 at 17:49 +, Luciano _ wrote: First: I'm developing an application that use System.IO and i read that there are some IO operation classes in the Mono.Unix namespace. Which is the best solution? System.IO or Mono.Unix? I'm developing a Linux-Only Application. Use

Re: [Mono-dev] System.IO or Mono.Unix

2006-12-22 Thread Luciano _
Thanks to you and jonathan. You are right, i don't need (at this moment) any native calls, maybe in the future i will use mixed solution. i was thinking that maybe it was faster Mono.Unix than System.IO. Thanks! Bye. Luciano From: David Brown [EMAIL PROTECTED] To: Luciano _ [EMAIL PROTECTED]

Re: [Mono-dev] System.IO or Mono.Unix

2006-12-22 Thread David Brown
Luciano _ wrote: First: I'm developing an application that use System.IO and i read that there are some IO operation classes in the Mono.Unix namespace. Which is the best solution? System.IO or Mono.Unix? I'm developing a Linux-Only Application. The simple answer would be: does your

[Mono-dev] Patch for mono on linux/alpha

2006-12-22 Thread Sergey Tikhonov
Hello Zoltan, Here is set of patches for mono: - Code cleanup - Some hacks to support debugger - updates for linears optimization Thank you, Sergey. [EMAIL PROTECTED] Index: configure.in === --- configure.in (revision 69965) +++

Re: [Mono-dev] Patch for mono on linux/alpha

2006-12-22 Thread Miguel de Icaza
Hello Sergey, - Code cleanup - Some hacks to support debugger - updates for linears optimization I have commited your patches to SVN. Miguel. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Cross Compiling Mono For ARM

2006-12-22 Thread Miguel de Icaza
Hello, I would like to compile on a X86 Linux machine, but the generated output is for the ARM platform. Any suggestions on how to do this would be appreciated. Install scratchbox (www.scratchbox.org), then you only need to do: ./configure --disable-mcs-build make