I am currently unable to establish a connection with the NetApp storage system. I am using the Net App Manageability SDK and am attempting to connect to the NetApp API. I am new to NetApp API, so any suggestions or help is appreciated!
ERROR:
com.netapp.nmsdk.client.ApiProtocolException: Connection error to Storage System
Protocol protocol = Protocol.HTTPS;
try {
System.out.println("url is .." + url);
ApiRunner apirunner = new ApiRunner(ApiTarget.builder()
.withHost(url)
.withUserName(REMOTE_USERNAME)
.withPassword(REMOTE_PASSWORD)
.withTargetType(TargetType.FILER)
.useProtocol(protocol)
.build()
);