ARS2.x ONLY

ars_NTRegisterClient(username, password, filename)

Register with a notification client (ntclientd) to receive notifications.

On success
1 (True)
On failure
0 (False)

Example:

	ars_NTRegisterClient("joe", "yadda", "/tmp/mypipe1") ||
		die "ars_NTRegisterClient: $ars_errstr";
      

Notes:

  1. See the example in the ARSperl/examples/2.x directory to learn how to setup the pipe and use this routine.
  2. See the ARS 2.x Programmer's Guide for instructions on parsing the encoded messages that are read from the pipe.

<-- Back to Table of Contents