home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / makedce.zip / EXAMPLES.ZIP / examples / ChServer / README < prev    next >
Encoding:
Text File  |  1994-05-08  |  1.4 KB  |  41 lines

  1. This directory contains four files:
  2.  
  3. Makefile  - general makefile rules
  4.  
  5. program.c - main program for the client application.
  6.  
  7. chain.c   - manager funcion for the chaining server.
  8.  
  9. manager.c - manager functions for the end server application.
  10.             functions to be called by the chaining server.
  11.  
  12. chserver.apf - apllication profile for the MakeDCE client and server
  13.             and chserver applications.
  14.  
  15. when you type "nmake" you should get the following message:
  16.  
  17. Do one of the following:
  18. 1. nmake help - to display this maessage.
  19. 2. nmake program - to make the Non-DCE program.
  20. 3. nmake chain.idl - to make the IDL file for chain.c.
  21. 4. nmake manager.idl - to make the IDL file for manager.c
  22. 5. nmake /C client - to make the client side of of the chaining server demo
  23. 6. nmake /C chserver - to make the chaining server application
  24. 7. nmake /C server - to make the final server of the chaining server demo
  25. 8. nmake clean - to delete then non-source files.
  26.  
  27. ATTENTION:
  28.    The "rpcd" deamon should be running, in order for the client and
  29.    server to run properly.
  30.  
  31.    If for some reason you can not run "rpcd", use "string" bindtype
  32.    in chaining_server.apf, or use fixed endpoint.
  33.  
  34.    To create the DCE demo you must execute 6 steps:
  35.    1. nmake /C client
  36.    2. nmake /C ch_server
  37.    3. nmake /C server
  38.    4. run 'server'
  39.    5. run 'ch_server' (that will bind to 'server' )
  40.    6  run 'client' (that will bind to 'ch_server' ) 
  41.