[Mono-dev] Who is in charge of IronPython RPMs?

2006-09-25 Thread Sanghyeon Seo
Who is in charge of IronPython RPMs, available on: http://www.mono-project.com/Downloads ? -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Who is in charge of IronPython RPMs?

2006-09-25 Thread Sanghyeon Seo
2006/9/25, Sanghyeon Seo [EMAIL PROTECTED]: Who is in charge of IronPython RPMs, available on: http://www.mono-project.com/Downloads ? Okay, lupus told me it's Wade Berrier [EMAIL PROTECTED]. Thanks. -- Seo Sanghyeon ___ Mono-devel-list mailing list

[Mono-dev] I need help with AppDomain or runtime bug

2006-09-25 Thread Andrew Skiba
Hello. As I wrote a few mothes ago, when I made NunitWeb test framework, there a strange bug when I run tests on mono. Sometimes mono hangs, and oftentimes there are exceptions with the following stacktrace: Tick caught an exception that has not been propagated: System.NullReferenceException:

Re: [Mono-dev] Maybe a System.Data.OracleClient.dll bug

2006-09-25 Thread Jörg Rosenkranz
Hi David, 2006/9/18, David [EMAIL PROTECTED]: ... You will see the result is not we expected,not all the character insert into the database. I suspect the problem lies in OciDefineHandle.DefineChar. There a buffer of 2 * character length is allocated and filled. This is enough for all

Re: [Mono-dev] Thread Pool WAPI Ref Problems

2006-09-25 Thread Patrick Earl
Putting one unpleasant hack in the source eliminated the leaking wapi thread handles in the test application I was using. However, when running the same code on the production server, there are still many thread handles leaking from other places. It seems there is some systematic problem

[Mono-dev] [PATCH] System.Security: Remove hack from KeyInfoX509Data

2006-09-25 Thread Gert Driesen
Hi, The attached patch removed an (unnecessary) hack from KeyInfoX509Data. The hack added an explicit declaration of the XMLDSIG namespace. This was supposedly for compatibility with MS, but I tested with .NET 1.0, .NET 1.1 and .NET 2.0 and none of these emit that extra namespace declaration or

Re: [Mono-dev] Maybe a System.Data.OracleClient.dll bug

2006-09-25 Thread Rafael Teixeira
Just some info, UTF-8 for Unicode 3.x, goes up to 6 bytes per character. :| On 9/25/06, Jörg Rosenkranz [EMAIL PROTECTED] wrote: Hi David, 2006/9/18, David [EMAIL PROTECTED]: ... You will see the result is not we expected,not all the character insert into the database. I suspect

Re: [Mono-dev] Maybe a System.Data.OracleClient.dll bug

2006-09-25 Thread Jonathan Pryor
On Mon, 2006-09-25 at 21:36 -0300, Rafael Teixeira wrote: Just some info, UTF-8 for Unicode 3.x, goes up to 6 bytes per character. :| IIRC, UTF-8 should never be 6 bytes per character. It *can* be, to encode the entire 31-bit address space of UCS-4, but since IIRC they limited Unicode ISO

[Mono-dev] Cannot compile mono or mcs, please help

2006-09-25 Thread David Piepgrass
As a school project, I have decided to add unit checking to C# using annotations in comments. With this feature, you would potentially be able to write code like this...double average(IListdouble list) { double total = 0; for (int i = 0; i list.Count; i++) total += list[i]; return total /

[Mono-list] Error in Dataset ReadXmlSchema from an XSD file?

2006-09-25 Thread Juha Saharinen
Hi,I'm trying to read a schema for a DataSet form an XSD file, which causes an error. The behavior is different in MS .NET 2.0 and Mono (tried both 1.1.17.1 and 1.1.13.8 under Linux x64, both fc5 and OpenSUSE 10.1): both gmcs and Windows csc compiled binaries work OK in Windows (Vista RC1) and

[Mono-list] Evolution Sharp

2006-09-25 Thread Peter Hagen
Hi! can someone tell me where i can find info or api desciptions about evolution sharp? I want to create a connection to my own server for the calender and todo items greetings Peter ___ Mono-list maillist - Mono-list@lists.ximian.com

[Mono-list] Could Not Deserialize Soap Message

2006-09-25 Thread David P. Donahue
Does anyone know what it means when I try to access a Web Service function from a client application and the application throws an exception with the message: Could Not Deserialize Soap Message Other web service functions are working just fine, it's just this one. I tried removing the

Re: [Mono-list] Could Not Deserialize Soap Message

2006-09-25 Thread Glen Ford
The server did not understand your request, something was malformed or missing in the request. Are both your server and client using mono/C#? If so how did you generate the client side? David P. Donahue wrote: Does anyone know what it means when I try to access a Web Service function

Re: [Mono-list] Could Not Deserialize Soap Message

2006-09-25 Thread David P. Donahue
The server is using mono/C#, and the code was written in Visual Studio. The client app is in C# in Visual Studio running on a Windows box. It seems the pattern to this error is that it only happens when one of the expected arguments for the web service function is a System.DataSet object.

[Mono-list] Running an Application in the background

2006-09-25 Thread Jason Burris
I have a C# console application that runs under linux. The program informs you that it is running and to type 'exit' to get out of the program. This all works fine, but if I try to put this in a background process, it will stop the process all together and won't continue to run the application. Is

[Mono-list] Asp.net 2.0 Mono

2006-09-25 Thread Lee
Hi all, I had a chance to play with mono a while back when I wrote a small tcp server app to handle requests from a delphi/windows app. I am now interested in writing an asp.net application to run on a CentOS box. I have only VS2005 and was wondering if I would have any problems tageting

[Mono-list] Unhandled Exception: System.EntryPointNotFoundException: Foo

2006-09-25 Thread Srikanth Chavali
Hi, I am trying to run a .exe file with mono on a linux system and i see the error:Unhandled Exception: System.EntryPointNotFoundException:FooFoo is defined in a .cpp file. The .exe does DllImport and Foo is the entry point in that function. There is a function Foobar1 that executes successfully

Re: [Mono-list] Asp.net 2.0 Mono

2006-09-25 Thread Michael Schurter
Hi Lee, Lee wrote: I had a chance to play with mono a while back when I wrote a small tcp server app to handle requests from a delphi/windows app. I am now interested in writing an asp.net application to run on a CentOS box. I have only VS2005 and was wondering if I would have any problems

Re: [Mono-list] Unhandled Exception: System.EntryPointNotFoundException: Foo

2006-09-25 Thread Jonathan Pryor
On Mon, 2006-09-25 at 15:18 -0700, Srikanth Chavali wrote: Hi, I am trying to run a .exe file with mono on a linux system and i see the error: Unhandled Exception: System.EntryPointNotFoundException:Foo Foo is defined in a .cpp file. The .exe does DllImport and Foo is the entry point in