[Mono-dev] AIX / Mono System Requirements

2005-09-02 Thread Bernhard Herzog
Hi, I have a newbie question about Mono regarding System Requirements. Short Version: Does it make any sense to try to use/compile Mono under AIX right now? Or should I better be using Linux and with which Kernel (2.4 or better 2.6?)? Long version: I have been a long time user of Java but it

Re: [Mono-dev] C++ to C# to C++ interop, how can I do this in a mono-compliant way?

2005-09-02 Thread Miguel de Icaza
Hello, Is there any way to have this work under Mono? Please realize that the basic need is to have 1 instance of a C++ exe call into a .NET dll, and have that DLL be able to then execute functions in the C++ exe that called it. So this requires a mono-equivlant of PInvoke, plus a way

Re: [Mono-dev] msdn-browse

2005-09-02 Thread Miguel de Icaza
Hello, I noticed on the svn branch a nice little utility for browsing msdn without having to pratt about with the MSDN website. I've run makefile, but all I get back is this (the code fails to compile) This is a recent mcs regression, we should be fixing it tomorrow (Martin is on vacation,

[Mono-dev] C++ wrapper ?

2005-09-02 Thread ivar
Hello, If I want to wrap a c++ class library what should I do ? For me it seems like I have to do the following: 1. Make a ANSI c interface file calling the C++ functions, interfacefile_1 2. use csharps DLLImport directive making a wrapper class i csharp, interfacefile_2 But then I have still two

Re: [Mono-dev] Bug Day

2005-09-02 Thread Julien Gilli
Hello, Paul F. Johnson wrote: We had some good movement on this, but the idea seems to have gone dead. As for me, the idea hasn't gone dead, i'm waiting for comments from key developers. However, bringing this on the mono mailing lists again is a good idea :-). Are we going to have a

[Mono-dev] .NET Remoting: Upload of a file from a Win32 MS .NET client to a Linux Mono .NET server.

2005-09-02 Thread Yngve Zackrisson
Hi there. This is the first time I send a mail to this list. I am currently trying to set up a .NET Remoting application. For the communication I use HTTP with binary formating as a communication channel. I have got the application work with MS .NET Win32 on both the client and server side.

Re: [Mono-dev] Bug Day

2005-09-02 Thread Julien Gilli
Paul F. Johnson wrote: However, bringing this on the mono mailing lists again is a good idea :-). It was my son that reminded me - he thinks the idea of bugs in software is funny (he is 7 and to him, bugs are what you squish with a shoe!) :-). Are we going to have a Gnome style

Re: [Mono-dev] Bug Day

2005-09-02 Thread Paul F. Johnson
Hi, These faults don't have to be real ones either. Can you tell us more about this ? I don't understand how we could use fake bugs. Better known as googlies (from the cricket term). Basically, one of the developers reports a fault (under an assumed name of course) which on the surface

Re: [Mono-dev] Bug Day

2005-09-02 Thread Julien Gilli
Paul F. Johnson wrote: These faults don't have to be real ones either. Can you tell us more about this ? I don't understand how we could use fake bugs. Basically, one of the developers reports a fault (under an assumed name of course) which on the surface looks completely

Re: [Mono-dev] C++ to C# to C++ interop, how can I do this in a mono-compliant way?

2005-09-02 Thread Robert Jordan
J wrote: I am looking for a way of having a C++ exe integrate with a .NET dll. I have a solution working under Windows (Microsoft.NET 1.1) however I would like to make this function under Mono. Here are the details: I currently am writing a C# wrapper of a C++ game engine. (T2D by

[Mono-dev] Marshal Variable length structure Array in Mono

2005-09-02 Thread Yogendra Thakur
Title: Marshal Variable length structure Array in Mono Hi , I want to marshal following C structure . [C] struct Foo { int First; int Second; }; struct FooList { int Count; Foo List[1]; }; void GetFooList(struct * FooList fList); I am doing it following

Re: [Mono-dev] .NET Remoting: Upload of a file from a Win32 MS .NET client to a Linux Mono .NET server.

2005-09-02 Thread Robert Jordan
Yngve, The problems (now) arise when i try to upload a zip file from the client to the server. I use a parameter with a (File)Stream object to do callbacks to Read the file in blocks from the client into the server. When calling the Read(buffer, 0, buffer.Length) method I get index out of

[Mono-dev] header have been already sent ?

2005-09-02 Thread Hubert FONGARNAND
I'm back from my holydays... and i've updated mono from svn... It seems that there are many changes in ASP.NET Many web application that worked before doesn't work now... The first error I experience is an xsp error : [EMAIL PROTECTED] /home/monoapp/FicheClient $ xsp xsp Listening on port: 8080

RE: [Mono-dev] default_opt and aot

2005-09-02 Thread Gary M. Smithrud
When running exception.exe after the test_0_ulong_cast (both tests did fail with 1 and 4 as the values instead of 0). Gary M. Smithrud Haley Systems, Inc. Phone: 724-934-7853 [EMAIL PROTECTED] www.haley.com Moving at the Speed of Change -Original Message- From: Zoltan Varga [mailto:[EMAIL

RE: [Mono-dev] Re: [PATCH] Fully Asynchronous and Re-Factored SslStreams in Mono.Security

2005-09-02 Thread JD Conley
Harry, The latest patch that I sent to the maintainers doesnt use the delegate BeginInvoke any more. It uses an asynchronous BeginRead or BeginWrite call to the innerStream to kick off the handshake in a background thread. -JD Conley From: [EMAIL PROTECTED]

[Mono-dev] Custom surrogates and serialization

2005-09-02 Thread Chris Micacchi
Hi! I've recently started a project trying to get some fairly complex software that was written for .Net 1.1 working on Mono, and so far I've found almost everything works quite well with minimal changes needed. I have run into a few issues, and I’m hoping that someone can take a look at

[Mono-dev] patch for Mono.Cairo to rename SurfaceImage and Patterns

2005-09-02 Thread John Luke
Hello, Here is a patch to rename SurfaceImage to ImageSurface and implement the type-hierarchy for Patterns in the cairo docs. After this I think I will only have 1 more patch with an api change to make the Surfaces a hierarchy of types also. Thanks to Hisham for taking care of

Re: [Mono-dev] ** ERROR **: file exceptions-ia64.c:

2005-09-02 Thread Zoltan Varga
Hi, This has just been fixed in SVN. Zoltan On 9/1/05, Kevin [EMAIL PROTECTED] wrote: Jonathan, thanks for the tip on monolite. I should have read more of the README myself. I am now facing an assertion problem and was

Re: [Mono-dev] expected corlib 37, found 38

2005-09-02 Thread Bernhard Herzog
Thank you! I also found this documented in one of the INSTALL-files now. I should better read the documentation first next time. Mixing version from SVN and releases was not a good idea, now that I have compiled everything myself it is working. I even had to recompile my own application. I am

[Mono-dev] Zac Bowling has invited you to open a Google mail account

2005-09-02 Thread Zac Bowling
--- Zac Bowling has invited you to open a free Gmail account. To accept this invitation and register for your account, visit http://mail.google.com/mail/a-fdc691e1c6-e9b66c8a2c-9e24b69030 Once you create your account, Zac

[Mono-dev] patch to add more surfaces to Mono.Cairo

2005-09-02 Thread John Luke
Hello, Here is a patch to add an XlibSurface and Win32Surface to Mono.Cairo. I updated the samples and they still work and added one for win32 (only tested with .net). Index: Mono.Cairo/Cairo.cs === --- Mono.Cairo/Cairo.cs

Re: [Mono-dev] [PATCH][GMCS] add MakeGenericMethod to MethodInfo

2005-09-02 Thread Kamil Skalski
I attach the more complete and correct patch - MakeGenericMethod is added to MethodBase instead of MethodInfo, I made necessary changes to gmcs and mbas, also the change to GenericParameterAttributes is included. One question I would like to ask is if I should also change the runtime icalls from

Re: [Mono-dev] [PATCH][GMCS] add MakeGenericMethod to MethodInfo

2005-09-02 Thread Kamil Skalski
And the file goes here... 2005/9/2, Kamil Skalski [EMAIL PROTECTED]: I attach the more complete and correct patch - MakeGenericMethod is added to MethodBase instead of MethodInfo, I made necessary changes to gmcs and mbas, also the change to GenericParameterAttributes is included. One

[Mono-dev] Pre-release notes.

2005-09-02 Thread Miguel de Icaza
Hello, As it happens with every release, I can not keep track of all the developments in the tree, and I would like to list all the major highlights in this upcoming Mono release. Please review my release notes and send me any relevant comments on things that might be missing:

Re: [Mono-dev] Bug Day

2005-09-02 Thread Atsushi Eno
Julien Gilli wrote: Hello, Paul F. Johnson wrote: We had some good movement on this, but the idea seems to have gone dead. As for me, the idea hasn't gone dead, i'm waiting for comments from key developers. However, bringing this on the mono mailing lists again is a good idea :-). Why

[Mono-dev] patch to fix Mono.Cairo.Operator

2005-09-02 Thread John Luke
Hello, One more patch to make Cairo.Operator match cairo_operator_t in cairo 1.0, I guess the other values were either from an older cairo or when Mono.Cairo was being used to emulate another library. Index: Mono.Cairo/Cairo.cs

[Mono-dev] Re: [Mono-list] Mono.Security.dll async SSL preview

2005-09-02 Thread Sebastien Pouliot
Hello, A modified version of JD's patch is now in SVN. The changes are minor: (a) make it compile under 1.x (can't call Invoke on a delegate); (b) make the API to look more like the original (i.e. internalize ;-) My tests didn't show any difference between this version and the previous one (i.e.

Re: [Mono-dev] patch for Mono.Cairo to rename SurfaceImage and Patterns

2005-09-02 Thread Hisham Mardam Bey
I will look into this on Sunday as I will be offline most of the day on Saturday. Thanks for your hard work! Hisham. On 9/2/05, John Luke [EMAIL PROTECTED] wrote: Hello, Here is a patch to rename SurfaceImage to ImageSurface and implement the type-hierarchy for Patterns in the cairo

Re: [Mono-dev] .NET Remoting: Upload of a file from a Win32 MS .NET client to a Linux Mono .NET server.

2005-09-02 Thread Sunny
Sorry, replied off the list, here is a copy: On 9/2/05, Yngve Zackrisson [EMAIL PROTECTED] wrote: Hi there. The problems (now) arise when i try to upload a zip file from the client to the server. I use a parameter with a (File)Stream object to do callbacks I did not check all your code,

Re: [Mono-dev] Bug Day

2005-09-02 Thread Paul F. Johnson
Hi, As for me, the idea hasn't gone dead, i'm waiting for comments from key developers. However, bringing this on the mono mailing lists again is a good idea :-). Why not just immediately tuckle existing bugs? I have been fixing mcs bugs those days. I don't know much about mcs

Re: [Mono-dev] Mono on OSX 10.4 (Cocoa and Threading)

2005-09-02 Thread Allan Hsu
On Sep 1, 2005, at 10:52 PM, Frank Bergmann wrote: I must say I had trouble creating a test case (since it is a rather big project). I found out the following though: Under Win32 I used the Mutex class during thread spawning to ensure thread safety. Under OS X these Mutex's caused a

[Mono-dev] System.Windows.Forms and mbas

2005-09-02 Thread Thomas Cleenewerck
I'm trying to get the following example working on winxp with mono-1.0.5: imports Systemimports System.Windows.Forms Module Hello sub Main() dim f as new System.Windows.Forms.Form() dim c as new Collection()Console.WriteLine(Hello World vb.mono) end sub end module I'm compilingthe program