Is there a way to pass command line arguments to a service invoked by mono-service? All of the command line arguments seem to be absorbed by mono-service instead of passed to the service.

link|improve this question

are you using an Assembly with a Main method? You should already be able to 'catch' the command line arguments from there, but see my post for a possible patch if it really wasn't by design. – sehe Oct 3 '11 at 15:07
feedback

1 Answer

up vote 1 down vote accepted

AFAICT there is no way.

The idiomatic way to do things would be to use an app.config file to contain Configuration Sections (in XML).

Update

That seems odd. The assebmblyArgs [sic] are being passed as part of the activationAttributes to AppDomain.CreateInstanceAndUnwrap Method (String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[]), but being ignored in the call to OnStart.

You could try compiling a modified version of mono-service.exe using the following source:

* see github gist or commit for review

Compile to mono-service.exe with -r:System.ServiceProcess.dll -r:Mono.Posix.dll -unsafe


OLDER STUFF:

Update 1 Strike that. Judging from the code you should just be able to pass options trailing the assembly name.

This implies that the following should do what you expect:

 mono-service -l:/root/service-lock MyService.exe /Param1 /Param2 bla.txt

link|improve this answer
I don't think they're passed to OnStart, but rather into Main. Let me test and I'll let you know. – David Pfeffer Oct 3 '11 at 15:36
Yes, I can confirm this. – David Pfeffer Oct 3 '11 at 16:14
1  
@DavidPfeffer: FYI the patch has been applied to Mono github today by Miguel himself :) This means that you can expect things to work better with params passed to mono-service in the future – sehe Oct 22 '11 at 19:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.