Hi,

First of all I don't understand why I'm supposed to be doing thread-hijacking. Is not this the place to post questions about mono-service?

Anyway, it seems there is a bug in mono-service. Whenever it tries to launch a service application it raises an exception in mono-service.cs at method StartService.

The code is doing something like:

string [] service_args = new string [0];

entry.Invoke(null, service_args);


return 0;

And it raises the exception I posted in a previous email.

Doing the following:

string [] service_args = new string [0];

object[] obj = new object[1];

obj[0] = service_args;

entry.Invoke(null, obj);


return 0;



The problem seems to be solved.

I replaced the mono-service.exe on my Fedora4/mono-1.1.15 and now it works.

Regards,



pablo



----- Original Message ----- From: "Ympostor" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Wednesday, June 07, 2006 10:09 AM
Subject: [Mono-dev] [OT] Thread hijacking (was: Re: mono-service again)


[EMAIL PROTECTED] escribió:
Hi all,
...

Hello. Sorry for the Off-Topic but this is the second message from you in which I see you are making Thread Hijacking [1].

For the cleanliness of the list, please stop doing it.

Regards.

--
[1] http://en.wikipedia.org/wiki/Thread_hijacking

_______________________________________________
Mono-devel-list mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/mono-devel-list

_______________________________________________
Mono-devel-list mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/mono-devel-list

Reply via email to