Hi,
I'm trying to load a mib file inside a jar file. I had tried a lot of ways using the methods setMibPath and loadMibModule from MibOperations but nothing seems to work. For example:
MibOperations mib = new MibOperations();
mibOperations.setMibPath("/home/xpto/mibs.jar");
mibOperations.loadMibModule("IF-MIB");
I always get the exception: "Couldn't find file in search path specified"
Could someone send me a example?