Click to See Complete Forum and Search --> : ActiveX Server


Goose
August 25th, 1999, 02:00 AM
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.

Lothar Haensler
August 25th, 1999, 02:35 AM
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.