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

Windows编程

开发平台:

Visual C++

  1. AUTO
  2. The AUTO program demonstrates the use of the ACF attribute auto_handle in 
  3. a distributed application that generates a time stamp. 
  4. The directory samplesrpchandlesauto contains the following files to
  5. build the distributed application AUTO:
  6. File          Description
  7. README.TXT    Readme file for the AUTO sample
  8. AUTO.IDL      Interface definition language file
  9. AUTO.ACF      Attribute configuration file
  10. AUTOC.C       Client main program
  11. AUTOS.C       Server main program
  12. AUTOP.C       Remote procedures
  13. MAKEFILE      Nmake file to build for Windows NT or Windows 95
  14. MAKEFILE.DOS  Nmake file to build for MS-DOS
  15. -------------------------------------------
  16. BUILDING CLIENT AND SERVER APPLICATIONS FOR
  17. MICROSOFT WINDOWS NT OR WINDOWS 95
  18. -------------------------------------------
  19. The following environment variables should be already set for you:
  20.   set CPU=i386
  21.   set INCLUDE=%SDKROOT%h
  22.   set LIB=%SDKROOT%lib
  23.   set PATH=%SDKROOT%system32;%SDKROOT%bin
  24. where %SDKROOT% is the root directory for the 32-bit Windows SDK.
  25. For mips, set CPU=mips
  26. For alpha, set CPU=alpha
  27. Build the sample distributed application:
  28.   nmake cleanall
  29.   nmake
  30. This builds the executable programs autoc.exe (client) and
  31. autos.exe (server).
  32. -----------------------------------------------------------------------
  33. BUILDING THE CLIENT APPLICATION FOR MS-DOS
  34. -----------------------------------------------------------------------
  35. After installing the Microsoft Visual C/C++ version 1.50 development
  36. environment and the 16-bit RPC SDK on a Windows NT or Windows 95
  37. computer, you can build the sample client application from Windows NT
  38. or Windows 95:
  39.   nmake -f makefile.dos cleanall
  40.   nmake -f makefile.dos
  41. This builds the client application callc.exe.
  42. You may also execute the Microsoft Visual C/C++ compiler under MS-DOS.
  43. This requires a two-step build process.
  44.   Step One: Compile the .IDL files under Windows NT or Windows 95:
  45.     
  46.      nmake -a -f makefile.dos auto.h
  47.   Step Two: Compile the C sources (stub and application) under MS-DOS:
  48.       
  49.      nmake -f makefile.dos
  50. ------------------------------------------
  51. RUNNING THE CLIENT AND SERVER APPLICATIONS
  52. ------------------------------------------
  53. On the server, enter:
  54.   net start rpclocator
  55.   autos
  56. (You can also start the RPC Locator by running the
  57. Services program in Control Panel.)
  58. On the client, enter:
  59.   net start workstation
  60.   autoc
  61. Note: The client and server applications can run on
  62. the same Microsoft Windows NT computer when you use
  63. different screen groups.
  64. Several command line switches are available to change
  65. settings for this program. For a listing of the switches
  66. available from the client program, enter:
  67.   autoc -?
  68. For a listing of switches available from the server
  69. program, enter:
  70.   autos -?
  71. ---------------------
  72. RUNNING ON WINDOWS 95
  73. ---------------------
  74. If you wish to run the server on Windows 95, you will need to use
  75. the LRPC protocol.
  76. To start the server, enter:
  77.   autos -p ncalrpc
  78. To start the client (from the same machine), enter:
  79.   autoc -p ncalrpc