Passing parameter to windows service...

H

Hakan Örnek

Hi ,
I want to parameter passing to my windows sevice. I call service commands
like this ;
'------------------------------------------------------------
Dim sc As ServiceController
sc = New ServiceController("ProsetLogServices")
sc.MachineName = "."
If sc.Status = ServiceControllerStatus.Stopped Then
sc.Start()
End If
sc.ExecuteCommand(129)
'------------------------------------------------------------
This is working but how can I passing parameters to windows service
function...

Thanks for all help...
 
M

Michael M.

Hakan,

Short awnser is:
you can't do this.

Long awnser is:
you will need to use imagination such as combining the command numbers with
external data. IE:

Have a registry key strore the data you need to pass to the function.

So in your client application you write the parameters to the registry key,
call the command (129)

in your service's custom function handler you react to the 129 command by
reading the registry key and passing that data to the service's internal
function.

You might want to write the PID and or Main window handle of your calling
applicaiton to the registry so the service can respond to it uisng custom
windows messages sendmessge(WND,WM_BLAH, PARAM, PARAM)!

There is also he posiblity of "memory mapped files" , "DDE" or Remoting.

Regards,

Mike.
 
H

Hakan ÖRNEK

Hi Mike,
Thanks for all help, may be registery using best solutions. Thanks again...

Hakan.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top