README.TXT
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. Simple Network OLE Sample
  2. DCOM is implemented only on Windows NT 4.0 and later versions.  This sample
  3. will not work correctly on Windows 95 or on earlier versions of Windows NT.
  4. The SIMPLE sample demonstrates the minimum requirements to use a COM object,
  5. whether it is on the same machine or on a different machine. This sample
  6. consists of a client and a server portion.
  7. The server application, SSERVER.EXE, implements the CLSID_SimpleObject class as
  8. a LocalServer. Instances of the class supports a limited form of the IStream
  9. interface. Calls to Read and Write succeed, but they do nothing. Calls to other
  10. methods fail with E_NOTIMPL.
  11. The client application, SCLIENT.EXE, uses the CLSID_SimpleObject class
  12. implemented by the server.
  13. To compile
  14. ----------
  15. Build the sample using the NMAKE command.
  16. To run
  17. ------
  18. The run the sample, use the following steps.
  19.  - Edit the SSERVER.REG file to make the LocalServer32 key point to the location
  20.    of SSERVER.EXE.
  21.  - Install the server on the current machine or a remote machine by running
  22.    INSTALL.BAT. This copies SSERVER.REG to the registry.
  23.  - Run SSERVER. It should display the message "Waiting...".
  24.  - Run SCLIENT. Use no command-line arguments to instantiate the object on the
  25.    current machine. Use the name of a remote machine (UNC or DNS) as an argument
  26.    to instantiate the object on the remote machine. SCLIENT displays simple
  27.    information about the calls it is making on the object.