home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / n / n001 / 3.ddi / READSPX < prev    next >
Encoding:
Text File  |  1989-09-14  |  2.1 KB  |  53 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 in
  12. order to execute the client or server application processes at a DOS
  13. workstation. Normally, when NetWare software is installed, the loading
  14. of this driver is included in the autoexec.bat file.  If you cannot
  15. locate IPX.COM on your workstation, discuss installation of the NetWare
  16. software with your network administrator.
  17.  
  18. The IPX driver will accept a configuration file named shell.cfg, if it
  19. appears in the root directory of your boot drive.  The configuration
  20. file allows you to change default limits on the number of sockets
  21. and connections that the driver can support, which are initially set
  22. at 20 and 100 respectively.  When setting these values consider the
  23. following:
  24.  
  25.    *  Many NetWare functions require the allocation of sockets and
  26.       connections.  In general, those available for use by your
  27.       distributed application will be somewhat less than the maximum
  28.       allocated.
  29.  
  30.    *  Each active binding of a client or server program requires
  31.       exclusive use of both an IPX socket and an SPX connection.
  32.       A multi-client server intended to handle active process bindings
  33.       with 40 clients should configure for at least 50 sockets and
  34.       connections.
  35.  
  36. The format of the entries in the configuration file shell.cfg is as
  37. follows:
  38.  
  39. IPX SOCKETS=NNN
  40. SPX CONNECTIONS=NNN
  41.  
  42. where NNN is a positive decimal value up to 150.
  43.  
  44. Most distributed programs written with NetWare RPC use the
  45. name to address mapping facility, provided by NetWare RPC, to allow
  46. client programs to locate server programs.  The server program
  47. registers its name with the network, and the client program
  48. identifies its remote server using a name.  When this facility
  49. is used, the network must include at least one NetWare file server
  50. to support use of the Fileserver Bindery by the client and
  51. server programs.
  52.  
  53.