如何解决用于mountimage和prepimage的IBM VDP Rest API无法正常工作
我正在尝试使用以下代码连接到IBM VDP并执行Mountimage coomand:
sourceImageName="Image_0404502";
RequestSpecification httpRequest = RestAssured.given().relaxedHTTPSValidation();
Response response = httpRequest.request(Method.GET,"/actifio/api/task/mountimage?image=" + sourceImageName
+ "&host=EST-VDP&allvolumes=true&exportedname=mountimageExportedname"+randomNumber+"&label=apimountdb" + randomNumber + "&sessionid=" + sessionID);
String responseBody = response.getBody().asstring();
我得到以下结果作为响应:
Response Body is => {"errormessage":"Invalid request","errorcode":10017}
任何人都可以帮助我理解为什么会发生这种情况吗?
注意:我能够成功登录,mkslt,mksla等。仅在挂载Image和prepimage时,我对如何解决此问题一无所知。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。