Hi Aashar,
Thanks for your reply.
The issue is at last line of our sample code. After 155 successful Iterations, The API invocation is failed
with following exception Stack Trace:
Exception Stack Trace
netapp.manage.NaAPIFailedException: Unable to create iterator (errno=13001)
at netapp.manage.NaServer.invokeElem(NaServer.java:653)
.........
Sample Code:
NaElement xi, xo, xii, xoo, xiii, xooo;
String volName="xxxx"
xi=new NaElement("snapshot-list-info");
xi.addChildElem(new NaElement("terse", "true"));
xi.addChildElem(new NaElement("volume", volName));
xo=server.invokeElem(xi);
List snapshots= xo.getChildByName("snapshots").getChildren();
List snapshots= xo.getChildByName("snapshots").getChildren();
for(Iterator k=snapshots.iterator(); k.hasNext();){
NaElement snapshot=(NaElement) k.next();
String snapshotName=snapshot.getChildContent("name");
String dirpath="/vol/"+volName+"/.snapshot/"+snapshotName;
xii=new NaElement("file-list-directory-iter-start");
xii.addChildElem(new NaElement("path", dirpath));
xoo=server.invokeElem(xii);
......
I am not sure about which mode is using whether 7-mode or C-mode we are using 7-Mode and Can you please explain how this mode related to this issue ?