home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / rpc / rpcssm / readme.txt < prev    next >
Text File  |  1996-01-17  |  2KB  |  93 lines

  1. RPCSS
  2.  
  3.  
  4. The RPCSS program demonstrates the rpcss memory management model.
  5.  
  6. FILES
  7. =====
  8.  
  9. The directory samples\rpc\rpcssm contains the following files for building
  10. the sample distributed application RPCSS:
  11.  
  12. File          Description
  13.  
  14. README.TXT    Readme file for the rpcssm sample
  15. rpcssm.IDL    Interface definition language file
  16. rpcssm.ACF    Attribute configuration file
  17. rpcssmC.C     Client main program
  18. rpcssmS.C     Server main program
  19. rpcssmP.C     Remote procedures
  20. MAKEFILE      Nmake file to build for Windows NT or Windows 95
  21.  
  22. -------------------------------------------
  23. BUILDING CLIENT AND SERVER APPLICATIONS FOR
  24. MICROSOFT WINDOWS NT OR WINDOWS 95
  25. -------------------------------------------
  26.  
  27. The following environment variables should already be set for you:
  28.  
  29.   set CPU=i386
  30.   set INCLUDE=%SDKROOT%\h
  31.   set LIB=%SDKROOT%\lib
  32.   set PATH=%SDKROOT%\system32;%SDKROOT%\bin
  33.  
  34. where %SDKROOT% is the root directory for the 32-bit Windows SDK.
  35.  
  36. For mips,  set CPU=mips
  37. For alpha, set CPU=alpha
  38.  
  39. Build the sample distributed application:
  40.  
  41.   nmake cleanall
  42.   nmake
  43.  
  44. This builds the executable programs rpcssmc.exe (client) and 
  45. rpcssms.exe (server).
  46.  
  47. ------------------------------------------
  48. BUILDING THE CLIENT APPLICATION FOR MS-DOS
  49. ------------------------------------------
  50.  
  51. This sample does not currently support a DOS build.
  52.  
  53. ------------------------------------------
  54. RUNNING THE CLIENT AND SERVER APPLICATIONS
  55. ------------------------------------------
  56.  
  57. On the server, enter:
  58.  
  59.   rpcssms
  60.  
  61. On the client, enter:
  62.  
  63.   net start workstation
  64.   rpcssmc
  65.  
  66. Note:  The client and server applications can run on the same Microsoft 
  67. Windows NT computer when you use different screen groups.
  68.  
  69. Several command-line switches are available to change settings for this 
  70. program. For a listing of the switches available from the client program, 
  71. enter:
  72.  
  73.   rpcssmc -?
  74.  
  75. For a listing of switches available from the server program, enter:
  76.  
  77.   rpcssms -?
  78.  
  79. ---------------------
  80. RUNNING ON WINDOWS 95
  81. ---------------------
  82.  
  83. If you wish to run the server on Windows 95, you will need to use
  84. the LRPC protocol.
  85.  
  86. To start the server, enter:
  87.  
  88.  rpcssms -p ncalrpc
  89.  
  90. To start the client (from the same machine), enter:
  91.  
  92.  rpcssmc -p ncalrpc
  93.