ONTAP Discussions

Specified vserver name can not be empty (errno=13115)

PRIYANKAADSUL
865 Views

Hi All,

 

For Netapp cluster(version 9.1.10), while collecting the conf data for naSystem we are getting below exception. This exception is coming while getting the o/p for 'system-get-version' API.

 

probe-ERROR-netapp.manage.NaAPIFailedException: Specified vserver name can not be empty (errno=13115)
at netapp.manage.NaServer.invokeElem(NaServer.java:751)

 

For one collection, it ran fine and the data got collected but after that it is giving the same exception.

 

2 REPLIES 2

Ontapforrum
842 Views

Could you share the screenshot, how are you connecting ?

PRIYANKAADSUL
801 Views

We're connecting through Java code. The same code worked fine for the first conf data collection but for the subsequent collection, it is throwing that exception. Also, this issue is seen on one specific customer's env only..elsewhere, it is working fine.

 

#code snippet

NaElement xi = null;
NaElement xo = null;

xi = new NaElement("system-get-version");
xo = this.naServer.invokeElem(xi);

 

Public