-
ActiveX Server
I am writing an ActiveX server. Different clients will access this server. It seems to me that the server only allows one instance per call.
Do I need to use a message queing service to accomadate all clients ? Or is there another method that I can use.
-
Re: ActiveX Server
by setting the Instancing property of your public class modules to SingleUse/MultiUse you control whether a new instance of your server app is started each time a new client starts a new communication with your server.
If Multiuse is true, only one instance of your server will be started. But it will be able to deal with many clients.