vote up 1 vote down star

Hello, I have a c# application that runs as a windows service controlling socket connections and other things. Also, there is another windows forms application to control and configure this service (systray with start, stop, show form with configuration parameters).

I'm using .net remoting to do the IPC and that was fine, but now I want to show some real traffic and other reports and remoting will not meet my performance requirements. So I want to combine both applications in one.

Here is the problem:

When I started the form from the windows service, nothing happened. Googling around I've found that I have to right click the service, go to Log on and check the "Allow service to interact with desktop" option. Since I don't want to ask my users to do that, I got some code googling again to set this option in the user's regedit during installation time. The problem is that even setting this option, it doesn't work. I have to open the Log On options of the service (it is checked), uncheck and check again.

So, how to solve that? How is the best way to have a windows service with a systray control in the same process, available to any user logging in?

UPDATE: Thanks for the comments so far, guys. I agree it is better to use IPC and I know that it is bad to mix windows services and user interfaces. Even though, I want to know how to do that.

flag

80% accept rate
"I know that coupling UI with my service will break my software, and maybe my users' computer, but I want to do that anyway." Take 3 or 4 steps back and re-evaluate if you should do what you're trying to do. Does it even make sense? – Greg D Oct 21 '08 at 13:31
@Greg D: I don't know where did you get this quotes, but I never said a service with UI would break the user's computer. Actually any software could do a lot of mess with the user's computer, so you don't have a point at all. Anyway, I never asked if I should do it or not, I asked HOW to do it. – andrecarlucci Oct 29 '08 at 12:27

8 Answers

vote up 13 vote down check

Two separate processes that communicate using your technology of choice. Services with UI is a bad idea. Don't go down this road - you'll regret it.

I've had very good results having service communication through a simple socket connection - document your service protocol well, keep it as simple as possible, and it'll be easier than you think.

link|flag
1  
I totally agree with this. If possible I would look at some communication method not as bloated as remoting. sockets, pipes, etc – mattlant Oct 1 '08 at 18:43
1  
@andrecarlucci: When we talk about services with UI, it's not "personal preference," it's architectural fact. Going with TCP/IP sockets and a simple, well-documented protocol will be your best way to get there from here, without the issues associated with Service+UI in the same process. – John Rudy Oct 1 '08 at 18:54
Hi all. I agree with you all. DotNet remoting is just that. But that's not the question, the question is how is the best way to do that in the same process and not the best way at all. I will rephrase my update so it doesn't sound rude, sorry about that. – andrecarlucci Oct 1 '08 at 18:59
1  
You can't do it in the same process safely. The problem is that you want part of your program to be session-independent and part of your program to be session-dependent. It's not possible in a modern environment. – Orion Adrian Nov 24 '08 at 19:46
vote up 1 vote down

In practice you should not couple your service with the management UI.

link|flag
vote up 1 vote down

I agree with Greg. Perhaps you could examine a different IPC mechanism. Perhaps use sockets and your own protocol. Or, if your service control app can only control the service on the local machine, you can use named pipes (even faster).

link|flag
vote up 0 vote down

It is very simply - your need to create one thread for perform application events. Like this( source code for C++ with CLR, but your can make this in C#):

ref class RunWindow{
public:
    static void MakeWindow(Object^ data)
    {
    	Application::EnableVisualStyles();
    	Application::SetCompatibleTextRenderingDefault(false); 

    	Application::Run(gcnew TMainForm());
    };
};

And create thread in main

int main(array<System::String ^> ^args)
{
    bool bService = RunAsService(L"SimpleServiceWithIconInTrayAndWindow");

    if (bService)
    {

    	System::Threading::Thread ^thread = gcnew System::Threading::Thread(gcnew ParameterizedThreadStart(RunWindow::MakeWindow));
    	thread->Start();

    	ServiceBase::Run(gcnew simpleWinService());
    	Application::Exit();
    }
    else
    {
    	Application::EnableVisualStyles();
    	Application::SetCompatibleTextRenderingDefault(false); 

    	// Create the main window and run it
    	Application::Run(gcnew TMainForm());
    }

    return 0;
}
link|flag
vote up 0 vote down

The main problems with interactive services are:

  • Security - other process could send it messages through its message pump, thereby gaining access to a SYSTEM/LOCAL process.

  • Incompleteness - an interactive service never sees shell messages, hence it can't interact with Notification Area icons.

We regularly use TCP and UDP connections to pass info from services to other exes, and, in some cases, MSMQ.

link|flag
vote up 0 vote down

Here is a way mixing up Services and Forms

http://www.codeproject.com/KB/system/SystemTrayIconInSvc.aspx

link|flag
vote up 0 vote down

I need to bump this question. If you should not couple forms and services, which I agree I guess because everyone said not too, how do you configure your service at run time??? Like with an Admin Form or something???

link|flag
vote up 0 vote down

I figured out how to do this from this article (click on the "Change" link in the Methods table).

string wmiPath = "Win32_Service.Name='" + SERVICE_NAME + "'";
using (ManagementObject service = new ManagementObject(wmiPath))
{
    object[] parameters = new object[11];
    parameters[5] = true;  // Enable desktop interaction
    service.InvokeMethod("Change", parameters);
}
link|flag

Your Answer

Get an OpenID
or

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