home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / n / n001 / 1.ddi / READSPX < prev    next >
Encoding:
Text File  |  1989-12-11  |  2.2 KB  |  54 lines

  1. Server Control Procedures
  2.  
  3. The server control procedures distributed with this version of
  4. NetWare RPC are:
  5.  
  6.         main_sc.c: Single-Binding server control procedure
  7.         main_mc.c: Multiple-Client server control procedure
  8.  
  9. Configuration Issues
  10.  
  11. The NetWare workstation IPX driver, IPX.COM, must be loaded
  12. in order to execute the client or server portions of a distributed
  13. application at a DOS workstation. Normally, when NetWare software
  14. is installed, the loading of this driver is included in the
  15. autoexec.bat file.  If you cannot locate IPX.COM on your workstation,
  16. discuss installation of the NetWare software with your network
  17. administrator.
  18.  
  19. The IPX driver will accept a configuration file named shell.cfg, if it
  20. appears in the root directory of your boot drive.  The configuration
  21. file allows you to change default limits on the number of sockets
  22. and connections that the driver can support, which are initially set
  23. at 20 and 100 respectively.  When setting these values consider the
  24. following:
  25.  
  26.    *  Many NetWare functions require sockets and connections to be
  27.       allocated for their use.  In general, those available for use
  28.       by your distributed application will be somewhat less than
  29.       the maximum allocated.
  30.  
  31.    *  Each active binding of a client or server program requires
  32.       exclusive use of both an IPX socket and an SPX connection.
  33.       A multi-client server intended to handle active process bindings
  34.       with 40 clients should configure for at least 50 sockets and
  35.       connections.
  36.  
  37. The format of the entries in the configuration file shell.cfg is as
  38. follows:
  39.  
  40. IPX SOCKETS=NNN
  41. SPX CONNECTIONS=NNN
  42.  
  43. where NNN may take on positive decimal values up to 150.
  44.  
  45. Most distributed programs written with NetWare RPC use the
  46. name to address mapping facility provided by the NetWare RPC, to allow
  47. client programs to locate server programs.  The server program
  48. registers its name with the network, and the client program
  49. identifies its remote server using a name.  When this facility
  50. is used, the network must include at least one NetWare Fileserver
  51. to support use of the Fileserver Bindery by the client and
  52. server programs.
  53.  
  54.