I have a service that runs in a privileged mode but occasionally the user who is unprivileged will need to configure it (selecting relevant hardware etc). I need to provide a simple visual interface for this.

As services can't interact with the visual environment by creating windows etc, I'm wandering what the best way to provide this interface is. Are there any good methods or patterns that people have used in the past?

Cheers,

Richard

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

add a wcf self hosted service to your windows service. publish in this service the method required, and create a client app to call this methods.

link|improve this answer
feedback

I have used WCF to provide a very similar interface in the past. It has several advantages but all normal IPC are also available to you. If it is going to be on the same machine you can allow a service to interact with the desktop.

link|improve this answer
are you sure about this. The reading I've done social.msdn.microsoft.com/forums/en-US/windowssdk/thread/… says this doens't work in Vista. – directedbit Mar 4 '11 at 15:41
Yea I didn't realize that. I guess I hadn't tried to go that route since xp so I never bumped up against it. – rerun Mar 4 '11 at 18:16
feedback

Your Answer

 
or
required, but never shown

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