I have written a persistent windows service in java that runs on boot.I have also written a GUI monitor in java that loads on user login.I would like to be able to have multiple instances of the GUI m
I havent written a windows service before and thought everything was going well until I deployed it to live. In dev it works fine and the polling it great, but as soon as it goes into production it fa
I need to create a small app which will run on my client machines as \"agent\" which will periodically check in with a server for certain 开发者_StackOverflow社区tasks.
I have a simple Windows Service hosting a WCF Service.I want to run the Windows Service under the LocalService account (or even the NetworkService account).However when I try to start it under either
I have a windows service that spawns off around 60 threads when it starts. I am using Nagios for general monitoring and I have all necessary routines to send data to nagios. However, I cannot figure o
After searching the web for information, I have managed to create a service which, depending on the command line, can install or uninstall itself, or just run as an application.
When creating Windows service using: sc create ServiceName binPath= \"the path\" h开发者_如何学JAVAow can arguments be passed to the Installer class\'s Context.Parameters collection?
I have a windows service (actually a serviced component) implemented in native C++. I want to be able to run it using the NT AUTHORITY/LOCAL SERVICE account but I want it to be able to store some star
I have a windows service which is creating a Named Pipe in it\'s service main Function. The code snippet is below:
What\'s the best way to build a service to handle queued long-running processes?For example, this is what we\'re trying to do