CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: ActiveX Server

  1. #1
    Join Date
    May 1999
    Location
    South Africa
    Posts
    19

    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.


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    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.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured