Hi, suppose I have some asp.net and WCF web service applications, which are running perfectly in the server.
Somehow I want to create another application A, for generic usage, I want to attach a copy of A to all those asp.net or WCF applications.
But A does not have anything to do with those applications, A just collects some data, does some background monitoring stuff. Those asp.net and WCF applications do not need to know what A does.
But my question is; Even if I add A as a reference into those applications, the code in A doesn't run.
So... do you think I can specify A in some config file, so that after deployment, A can be run automatically, and do its own job, but physically, A is living together with those asp.net or WCF applications.
Thanks