One instance of C# compo. serving multiple clients
Situation:
I have an ActiveX component which is written in C++.
Now I have written a wrapper around it, say "Component A",
in C# (a dll).
Problem:
1:Now how can I use "Component A" so that more than one
client use the "same instance" of "Component A".
Already existing "Component A" instance should
also serve a new client.
2:From which functionality I can do the load balancing for
this "Component A"?Means for more than say 3 client a new
instance of "Component A" will handle the new client.
Appreciate your help.
-N
|