
Hello,
There is a pretty major bug in the jax output for smidump in the dumpNotifications() function. Basically, for each variable in the notification, the constructor of the notification class does the following:
oid = var_OID; oid.appendImplied(...) varBind = new AgentXVarBind(oid, ...);
However, each of the var_OID member variables are declared as static, so additional values are continuously appended to them as more notifications are sent.
The easiest fix for this is to remove the static declaration of these variables, I think. That way, a new set of variables will be instantiated with each notification class.
Needless to say, this leads to many problems after a lot of notifications have been sent. The AgentXReader in the jax code begins to throw exceptions, since the OIDs become extremely long.
Thanks, Brian Remick University of Utah