multiple instances of windows service ...

  • Thread starter Thread starter Jay Warmack
  • Start date Start date
J

Jay Warmack

Is it possible to install multiple instances of windows service application
on a single server? I have been searching for any option I can find in the
process installer class and in the Install setup project etc. to find some
way to allow my service application to be installed more than once. So far
I can find no way to install the service more than once (i.e. into a
seperate app domain). Any suggestions on this? Also is there a better
newsgroup that might have this answer?

Thanks,

Jay Warmack
 
I keep replying but something is filtering my replies, trying for the 3rd
time:

An AppDomain is something that's associated with a collection of running
processes and DLLs. It's not some place on the system where you can install
files and services. On Windows, service names must be unique, so you can't
install the same one twice from two separate installs without getting
conflicts.
 
Back
Top