NetXMS 2.2.1 released

Started by Victor Kirhenshtein, December 07, 2017, 05:26:38 PM

Previous topic - Next topic

Victor Kirhenshtein

Hi,

persistent storage is implemented. You can access persistent storage entries using # operator. It has two forms:

#identifier

and

#(expression)

If your key conforms to NXSL identifier requirements you can use first form, otherwise (or if you are building key name dynamically) you should use second form. Examples:

1. Set value of key "test":

#test = 123;

or

#("test") = 123;


2. Set value of a key whose name built from prefix "node_" and current node ID:

#("node_" . $node->id) = 42;


3. Print value of key from example 2 multiplied by 10:

println #("node_" . $node->id) * 10;


Best regards,
Victor

Dmitri Lunyov

Thank you very much, Victor! It's really nice and convenient.

yordi

Quote from: xchema on December 11, 2017, 06:22:24 PM
New Android management console filename suggests it's 2.2.1 version, but when installed it seems to be still 2.1.2, is it me or the apk is wrong?

Same problem for me also with the android apk manager ..

yordi

#18
Hey Victor,

After update server to 2.2.1 (database check ok )
update de Windows manager to 2.2.1 I can not login anymore --> Connection Error  org/netxms/base/GeoLocation

restart the Netxms server (ubuntu) does not help ...

UPDATE:
after deleting user date on management pc + delete NETXMS manager (new version was extracted over the older version)
and re-unpack the new version i could start the manager again .

volkoff

#19
Android console version is broken or didn't recompile properly or whatever reason it is.
Filename suggests it's 2.2.1. But after launch program says 2.1.2 and didn't connect to the server due to incompatible version of exchange protocol.

Thanks for your work. You do a great job. It makes our lives much easier ;)

P.S. Oh, and Android AppManager says it's 2.1.0

Victor Kirhenshtein

Hi,

we just updated download link for Android client to properly packaged apk.

Best regards,
Victor

xchema

Quote from: Victor Kirhenshtein on December 18, 2017, 02:15:28 PM
Hi,

we just updated download link for Android client to properly packaged apk.

Best regards,
Victor

Thanks Victor, apk version is ok now.