[Mono-list] installation problems

2003-08-01 Thread Aurelian Coasan
hello! i installed mono. i installed glib 2.3 and the other necessary package first. when running an assembly i get the error message that libusr32.dll.so and libcomdlg32.dll.so are missing. there are no such libraries on the dirve. what should i do? thank you! aurelian

Re: [Mono-list] Finalizer never called

2003-08-01 Thread Gonzalo Paniagua Javier
El vie, 01-08-2003 a las 07:01, Giuseppe Greco escribió: Hi all, I've still the problem that the destructor (or finalizer) is never called... and this cause my applications to crash when exiting. Finalizers are not guaranteed to be called and if they are called, it may not be inmediately.

Re: [Mono-list] Finalizer never called

2003-08-01 Thread Giuseppe Greco
On Fri, 2003-08-01 at 11:18, Gonzalo Paniagua Javier wrote: El vie, 01-08-2003 a las 07:01, Giuseppe Greco escribi: Hi all, I've still the problem that the destructor (or finalizer) is never called... and this cause my applications to crash when exiting. Finalizers are not

[Mono-list] mod_mono installation: need help with httpd.conf etc.

2003-08-01 Thread Andreas Denz
(Sorry for double-post - had forgotten to put in header) Hi List, I am trying to get mod_mono to run after I managed to get some good results using xsp. Unfortunately it doesn't work and I am not sure whether I have interpreted the documentation right. So please have a look at my setting. I

Re: [Mono-list] Finalizer never called

2003-08-01 Thread Gonzalo Paniagua Javier
El vie, 01-08-2003 a las 11:31, Giuseppe Greco escribió: Finalizers are not guaranteed to be called and if they are called, it may not be inmediately. That would be OK... If one need the finalizer to be called immediately, he has just to call the Dispose() method (actually, that's my

[Mono-list] LDAP support?

2003-08-01 Thread Adam Williams
I've google'd around and looked at the mail list archives, but I haven't been able to create a clear picture of LDAP support in Mono. Anyone know where this stands? We are starting to move our Bind backend from zone files into LDAP (via SDB) for various reasons and need to write some adaptors to

Re: [Mono-list] Finalizer never called

2003-08-01 Thread Jonathan Pryor
snip/ A question: could really happen that a finalizer is never called? If so, how would managed resources be released? Is it possible for finalizers to never be called? Yes. Why? Because of this: class BadClass { ~BadClass () {

Re: [Mono-list] Finalizer never called

2003-08-01 Thread Giuseppe Greco
On Fri, 2003-08-01 at 13:58, Jonathan Pryor wrote: snip/ A question: could really happen that a finalizer is never called? If so, how would managed resources be released? Is it possible for finalizers to never be called? Yes. Why? Because of this: class BadClass {

Re: [Mono-list] How to listen on local socket

2003-08-01 Thread Steve Mentzer
i am paraphrasing here, but I believe the proper approach is IPEndPoint localEndPoint = new IPEndPoint(IPAddress.Any, ); // connect to port - Original Message - From: Jörg Rosenkranz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 01, 2003 7:35 AM Subject:

Re: [Mono-list] Advice on Mono run-time distribution

2003-08-01 Thread Ben Maurer
On Fri, 2003-08-01 at 11:02, Terry wrote: Is it possible for them to get Mono up and running without being able to install from an rpm or compiling the source? For example, could they just copy the mono executable into their account and be able to run it from there? Actually, you can compile

[Mono-list] Reflection

2003-08-01 Thread Giuseppe Greco
Hi all, sorry for my stupid question... but does anybody know how can I get the size of a type without using sizeof()? For example, sizeof(Int32) returns 4; how can I obtain the same result using the Type class? Thanks, Gius_. -- Giuseppe Greco

RE: [Mono-list] Reflection

2003-08-01 Thread Thong (Tum) Nguyen
Try System.Runtime.InteropServices.Marshal.SizeOf(Type). ^Tum -Original Message- From: [EMAIL PROTECTED] [mailto:mono-list- [EMAIL PROTECTED] On Behalf Of Giuseppe Greco Sent: Saturday, 2 August 2003 3:52 a.m. To: Mono Subject: [Mono-list] Reflection Hi all, sorry for my

[Mono-list] Unboxing values from embedded mono

2003-08-01 Thread Perry, James
Hi there, I'm embedding Mono within a certain piece of software, and I'm looking at extracting values out of return values (from functions called via mono_runtime_invoke). The writeup on embedding mono seems to indicate that there isn't an API to do this yet, although one is planned. To be more

Re: [Mono-list] Advice on Mono run-time distribution

2003-08-01 Thread Terry
My application is to be used with Half-Life game servers. I had previously released a Windows version of it, but got tons of email from Linux server ops. Most of them rent servers from server farms and they have very limited access to the machines. I don't know if they have access to shell, but

Re: [Mono-list] Advice on Mono run-time distribution

2003-08-01 Thread Miguel de Icaza
Hello, I may be stuck here, but I just can't accept that. :-) I was hoping that if they could ftp the mono binaries into their account (assuming they had the correct binaries for the Linux distro) that they would be able to run a C# console app from there. Launching it is a different