Re: [Mono-dev] Building my own binaries

2008-06-10 Thread Andreas Färber
Am 09.06.2008 um 23:05 schrieb Geoff Norton: Ockert, On Mon, 2008-06-09 at 14:00 -0700, Ockert wrote: I have an application that needs to run on Mac OSX that will be deployed to thousands of Macs in schools. The application is a .Net application and I would love to run it under Mono. I

[Mono-dev] System.MathTest.TestIEEERemainder fails

2008-06-10 Thread nataraj.ramaswamy
Hi, We have been able to successfully build Mono on Solaris 7 sparc (32 bit). When we tried to execute the Class Library test suites, some of the test cases were failing. We need your expert inputs/suggestions on the following failure: Under mcs/class/corlib,

[Mono-dev] Incompatibility between Remoting (TCP) implementation in Mono and .NET

2008-06-10 Thread Maciej Paszta
There is incompatibility between those two implementations. I found it while implementing my own Server and Client channels' sinks. Implementation works on .net but not on mono (throws exception that there was error in tcp connection). I already filled a bug:

Re: [Mono-dev] System.MathTest.TestIEEERemainder fails

2008-06-10 Thread Zoltan Varga
Hi, This is now fixed in SVN using your suggestion. Btw, some of our tests do fail on sparc, this is not a problem for most applications tough. Zoltan 2008/6/10 [EMAIL PROTECTED]: Hi, We have been able to successfully build Mono on Solaris 7 sparc (32 bit).

Re: [Mono-dev] System.MathTest.TestIEEERemainder fails

2008-06-10 Thread nataraj.ramaswamy
Hi Zoltan, Thanks for the immediate response. It would be really helpful if there are any links/references to recent test results for Sparc (version 1.9). Or in other words, is there a possibility to know the list of test failures, known issues on Sparc. Thanks regards, Nataraj -Original

Re: [Mono-dev] System.MathTest.TestIEEERemainder fails

2008-06-10 Thread Andreas Färber
Hi, Am 10.06.2008 um 13:22 schrieb [EMAIL PROTECTED] [EMAIL PROTECTED] : Thanks for the immediate response. It would be really helpful if there are any links/references to recent test results for Sparc (version 1.9). Or in other words, is there a possibility to know the list of test

[Mono-dev] Can not execute multiple SQL statements in single function call - ExecuteNonQuery()

2008-06-10 Thread sivakumar.arumugam
Hi The following test case not working on Solaris 7 system. Test Case Name SqliteParameterUnitTests Test Result Failed Error Message expected:0 but was:1 at MonoTests.Mono.Data.SqliteClient.SqliteParameterUnitTests.InsertRandomVa luesWithParameter () [0x00187] in

Re: [Mono-dev] [PATCH] Memory leak in debug support code

2008-06-10 Thread Martin Baulig
Hi Rodrigo, patch looks good, please commit. Martin On Mon, 2008-06-09 at 17:16 -0300, Rodrigo Kumpera wrote: Hi Martin, The attached patch fixes two memory leaks related to how mono-debug.c::find_method works. The patch moves mono_debug_free_method_jit_info from mini/debug-mini.c to

Re: [Mono-dev] Mono C# Serial Port problem

2008-06-10 Thread PaceyIV
Uhm... Now I try the code below. It works on Microsoft Visual Studio, but not in mono on Ubuntu. It compile it, but when I try to run it I get this error: Unhandled Exception: System.NotImplementedException: The requested feature is not implemented. at

[Mono-dev] Oracle ADO.NET Provider in Mono - Oracle White Paper about OCI

2008-06-10 Thread Daniel Morgan
At Oracle Technology Network, Oracle has a white paper entitled: Building High Performance Drivers For Oracle Database 11g OCI Tips and Techniques http://www.oracle.com/technology/tech/oci/pdf/building-best-drivers.v9.pdf This could help us create a better ADO.NET for Oracle on Mono. If

Re: [Mono-dev] Oracle ADO.NET Provider in Mono - Oracle White Paper about OCI

2008-06-10 Thread Veerapuram Varadhan
On Tue, 2008-06-10 at 08:07 -0700, Daniel Morgan wrote: Also, is there any need to continue to support 8i? Should we move on to only supporting 9iR2 and above? We should, however, IMO, a simple poll on mono-list would give us an idea of how many people are yet to upgrade to 8i. (AFAICT, the

Re: [Mono-dev] Mono C# Serial Port problem

2008-06-10 Thread Leszek Ciesielski
The RecievedEvent is not implemented (check the exception...). If you need to monitor the serial port for incoming data, create a separate thread for handling the port and use the blocking Read methods. Remember not to use the port outside the thread that has created it. Please note that MSDN

Re: [Mono-dev] Oracle ADO.NET Provider in Mono - Oracle White Paper about OCI

2008-06-10 Thread Federico Di Gregorio
Il giorno mar, 10/06/2008 alle 21.10 +0530, Veerapuram Varadhan ha scritto: On Tue, 2008-06-10 at 08:07 -0700, Daniel Morgan wrote: Also, is there any need to continue to support 8i? Should we move on to only supporting 9iR2 and above? We should, however, IMO, a simple poll on

Re: [Mono-dev] Oracle ADO.NET Provider in Mono - Oracle White Paper about OCI

2008-06-10 Thread Igor Guerrero
On Tue, Jun 10, 2008 at 11:07 AM, Daniel Morgan [EMAIL PROTECTED] wrote: Also, is there any need to continue to support 8i? Should we move on to only supporting 9iR2 and above? There are people using 8i still ;), is there any reason to drop the support? -- http://igordevlog.blogspot.com

Re: [Mono-dev] System.MathTest.TestIEEERemainder fails

2008-06-10 Thread Zoltan Varga
Hi, You can check the current status of our test suite on sparc on our build farm: http://mono.ximian.com/monobuild/python/monobuild.py/packagestatus?platform=sunos-10-sparcpackage=monoHEAD_or_RELEASE=HEAD the sparc buildbot seems to be broken right now, so it won't work, but it will get fixed

[Mono-dev] excute linux command under mono C#

2008-06-10 Thread Alan_Chun
Hi, any one know how to execute a command, e.g, stty 9600 -F /dev/ttyS0 under mono C#? string cmd = stty 9600 -F /dev/ttyS0 ; System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = ??? //here proc.StartInfo.Arguments = cmd; ??

Re: [Mono-dev] excute linux command under mono C#

2008-06-10 Thread Michael Hutchinson
On Tue, Jun 10, 2008 at 6:21 PM, Alan_Chun [EMAIL PROTECTED] wrote: Hi, any one know how to execute a command, e.g, stty 9600 -F /dev/ttyS0 under mono C#? string cmd = stty 9600 -F /dev/ttyS0 ; System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = ???

[Mono-dev] WFC for Compact Framwork

2008-06-10 Thread Franklin S. Dattein
Hi, I have to port the hosting part of the WCF for WindowsCE. I know that MS avoided that due to to the high footprint of the framework. However, in the real world we are always requested to do such stupid things. I was browsing the internet, looking for a WS Hosting Framework for CE and I found