Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
linenumberstrue
LOCAL m.loXFRX
m.loXFRX = XFRX("XFRX#INIT")
?m.loXFRX.getVersion()

m.loXFRX = XFRX("XFRX#LISTENER")
?m.loXFRX.getVersion()

How to get version of hndlib.dll or XFRXlib.fll

Code Block
SET LIBRARY TO xfrxlib.fll 
?_xfgetVersion()
 
DECLARE INTEGER getVersion IN hndlib AS XFRX_getHNDLIBVersion
?XFRX_getHNDLIBVersion()


LOG file

Another thing that can help us to find out what's wrong is a log file: Before calling SetParams(), please add loSession.initLog(). Then, when you run XFRX next time, _XFRX.log file will be generated in the default directory. This file contains all errors that are trapped during XFRX execution. Attaching this file to the email is a big help for us. The alternative method is setLogFile(). 
Error messages are print to "Output Windows" too (since XFRX 15.8).

...