|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Passing parameter to windows service...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... 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... > > 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... > > > > > >
Creating objects dynamically in a loop
Enum Is WSE 3.0 in VS2005(VB) required to migrate from VS2003? Comparing objects Menu - Eliminate The Triangular Arror pointer thing - How to do it? Network Communications Programmatically modifying the controls in FormView's PagerTemplate Logical Mistake Hide property at runtime. DataGridView ComboBox lookup question |
|||||||||||||||||||||||