hi,
i am writing a Zabbix agent in REXX.
Zabbix has its own protocol for messages. If you want to send data tot the zabbix server here are a few examples in other languages:
JAVA:
byte[] header = new byte[] {
'Z', 'B', 'X', 'D', '\1',
(byte)(data.length & 0xFF),
(byte)((data.length >> 8)...