I seem to have run into a problem where I can't scan any raid tec aggregates using NMSDK. The call I'm making against the cluster goes like this:
NaServer server = net NaServer("mycluster");
naServer.setApiVersion(1, 100);
naServer.setTransportType(NaServer.TRANSPORT_TYPE_HTTPS);
naServer.setPort(443);
naServer.setStyle(NaServer.STYLE_LOGIN_PASSWORD);
naServer.setAdminUser("myuser", "mypassword");
NaElement request = new NaElement("aggr-get-iter");
response = server.invokeElem(request);
System.out.println(response.toPrettyString("aggr-get-iter");
And it works fine; except it has no output for any aggregate that's raid-tec. Has anyone run into this?
I've upgrade to manageontap-5.6.jar which is the latest I could find with the same problem. I've also tried different versions of setApiVersion, all with the same problem.