Service Interface

  • Thread starter Thread starter Brian
  • Start date Start date
B

Brian

Hi, I have written a service, but now I'd like to write an interface to that
service... what are some keywords to look for or where can i find some
documentation on this?
 
Brian said:
Hi, I have written a service, but now I'd like to write an interface to that
service...

What sort of "interface"?

(1) An API that another program can call?

Look into Remoting.

(2) A GUI that you can use to configure the Service?

Write a separate WinForms application and store the configuration data
in a common location. Services are gradually losing their ability to
have any kind of visual presence so displaying a Form from the service
process is probably a Bad Idea.

HTH,
Phill W.
 
that was it, writing an interface(winform) to control or set the settings
for the service...
 
Back
Top