home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / com / dcom / dcom.txt
Text File  |  1998-04-02  |  2KB  |  25 lines

  1. DCOM Sample
  2.  
  3. This sample demonstrates how to call a COM object implemented in an NT service from multiple clients running on different machines. It is composed of two parts: 
  4.  
  5. 1.DrawServ - This is the NT service that implements the COM object.
  6. 2.ATLDraw  - This is the client that connects to the DrawServ COM object. 
  7. 3.DrawCtl  - This is a control version of ATLDraw. It has a Connect method (that takes a machine name string parameter), a Disconnect method and a Clear method.
  8. 4.MFCCont  - This is a MFC container for DrawCtl -- enter the name of the (possibly remote) server without quotes or slashes.
  9. 5.ATLCont  - This is an ATL container for DrawCtl -- enter the name of the (possibly remote) server without quotes or slashes..
  10.  
  11. Instructions 
  12.  
  13. Note that for this sample to work all machines must be running NT 4.0 Beta 2 or later. 
  14.  
  15. 1. Build the DrawServ and ATLDraw samples.
  16.  
  17. 2. Copy the DRAWSERV.EXE and ATLDRAW.EXE to each machine that you want to run the sample from. Register the server on each machine by running DrawServ with the command-line argument /RegServer or -RegServer (case-insensitive), for example, DrawServ /RegServer. (REGISTER.DLL must be registered for this to work.) The reason you must copy the server to each client is because the CLSID for the server and the server type library need to be registered on the client.
  18.  
  19. 3. Start the service on the server by using the Services icon in Control Panel.
  20.  
  21. 4. Using DCOMCNFG on each client, select the Properties of the DrawServ Class. From the Location tab select "Run application on the following computer", then enter the name of the computer that you are running the server object on. Uncheck the "Run application on this computer" box.
  22.  
  23. 5. Run ATLDRAW and select Server. Connect from the menu on each client. Draw on the client window by holding the left mouse button down and dragging a line. The drawn line should appear on each client that is also connected to the same server. You can also use the View.Color menu option to change the color for each client. 
  24.  
  25. 6. If there is any problem connecting to a remote server (for example, tstcon32.exe does not call CoInitializeSecurity) run dcomcnfg on the client and open tab "Default Properties".  Set "Default Authentication Level" to None and "Default Impersonation Level" to Anonymous.