Home All Groups Group Topic Archive Search About

Passing parameter to windows service...

Author
14 Jan 2007 2:00 PM
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...

Author
14 Jan 2007 6:02 PM
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.



Show quoteHide quote
"Hakan Örnek" <orn***@gmail.com> wrote in message
news:%239aIhR%23NHHA.3544@TK2MSFTNGP03.phx.gbl...
> 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...
>
>
Author
15 Jan 2007 6:57 AM
Hakan ÖRNEK
Hi Mike,
Thanks for all help, may be registery using best solutions. Thanks again...

Hakan.



Show quoteHide quote
"Michael M." <nospam@mike.com> wrote in message
news:uBUKmZAOHHA.536@TK2MSFTNGP02.phx.gbl...
> 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.
>
>
>
> "Hakan Örnek" <orn***@gmail.com> wrote in message
> news:%239aIhR%23NHHA.3544@TK2MSFTNGP03.phx.gbl...
> > 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...
> >
> >
>
>