Sign up on the Revelation Software website to have access to the most current content, and to be able to ask questions and get answers from the Revelation community

At 12 SEP 2002 04:10:42PM Thonning wrote:

How would a end-user know if they have a Revelation NLM service installed?


At 12 SEP 2002 05:17PM Jonathan Bird wrote:

If the NLM is installed and running, the file handle of a file will contain a string of "F". The code below will illustrate:

open 'VOC' to VOC_FILE then

if index(VOC_FILE,'FFFFFF',1) else
  MESS =NLM is not controlling your file access.'
  MESS := '|Please call system support.'
  call msg(MESS)
  perform 'OFF'
  end
end

end


At 12 SEP 2002 07:52PM prabir maulik wrote:

This is done through a procedure in the logon script.

  BADTSR="
  BADVOC="
  MSG_TEXT="
  CHECK_TSR(BADTSR,BADVOC)
  IF BADTSR THEN
     MSG_TEXT=LHIPXTSR was not found in memory"
     MSG(MSG_TEXT,"","","")
     PERFORM "OFF"
  END
  IF BADVOC THEN
     MSG_TEXT=VOC file not under NLM control"
     MSG(MSG_TEXT,"","","")
     PERFORM "OFF"
  END

EXPENDABLE SUBROUTINE CHECK_TSR(TFLAG,VFLAG)

DECLARE SUBROUTINE MSG

DECLARE FUNCTION ISTSR

IF ISTSR() ELSE TFLAG=BADTSR"

OPEN "VOC" TO VOC THEN

IF INDEX(VOC,"FFFFFF",1) ELSE

  VFLAG =BADVOC"

END

END

RETURN


At 17 SEP 2002 02:12AM Scott, LMS wrote:

variations on a theme

from TCL:

LIST VOC

EDIT SYSTABLES VOC

if the last line contains a lot of FFFFFFs near the beginning then the NLM is working.

Also try

NLM_STATS

from TCL. If this works then this means it has been installed.

There are some other commands in the trouble shooting and install guides for testing if the NLM is setup and going on the server.

Scott

View this thread on the forum...

  • third_party_content/community/commentary/forums_nonworks/0aeb59ed2ea8e02285256c32006ed7da.txt
  • Last modified: 2023/12/28 07:40
  • by 127.0.0.1