multiple instances of windows service

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
 
P

Phil Wilson

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.
 
P

Phil Wilson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top