================================================================================
Note 3.18                       Run-Time problems                       18 of 19
VXCERN::TIMBL "Tim Berners-Lee CERN/DD"              19 lines   5-MAY-1989 13:30
                       -< "Access Violation" on client >-
--------------------------------------------------------------------------------
    Experience shows that when someone reports that their client program
    crashes with an "Access violation" (often reading from address zero)
    that they have probably forgotten to initialise the client stubs.
    
    Automatic initialisation of the stubs is possible (currently) ONLY
    for stubs in
    		- VMS Pascal
    		- Turbo Pascal (PC or Mac)
    		- PILS.

    If your stubs are in C, FORTRAN or any other Pascal, then you must
    call the initialisation routines from your main programs.
    
    		OPEN_<package name>	on the client
    		ATTACH_<package name>	on the server

    These procedures take no parameters.
    On some systems (not VMS), you also have to call RPC_INIT once.
    See chapter 6 of the RPC Manual for details.

