java.lang.NullPointerException at QueryBoks.processMacEntry(QueryBoks.java:917) How could I debug this?
The fix is to change line 917 in that file from:
if (macVlan.size() == 0) continue;
To:
if (macVlan == null || macVlan.size() == 0) continue;
I can check this into svn later.
-- Kristian