I am trying to retrieve the latest version of a remote member file from MKS by specifying the file path, server name, and port number. I discovered the following command:
si getRevision --rev=revision_id /full/path/to/member/file/in/sandbox
However, when I execute this using the MKS Java API, I encounter an exception stating: MKS124814: Unable to display view details: this view is not supported in the Integration API.
Could you provide guidance on how to resolve this issue?
Thank you.
might wanna check if the API supports the command your using. some methods are limited in integration api. maybe check their official docs for any alternative commands that might fix it? hope that helps!
Facing this issue before, I found that the unsupported view error stems from limitations within the MKS Integration API when dealing with certain commands. To resolve this, you can try directly executing the command via a script outside the Java environment or incorporating it using a system call within your Java code. Additionally, ensure that the “si” command environment is properly set up on the system executing the script because sometimes it could be related to configuration issues rather than API support.
You might want to ensure that you have the correct access rights set up for the operation you are trying to perform with MKS. Sometimes, specific views or commands in Integration APIs require particular permissions or roles to be accessible. If the views or commands aren’t supported, consider using a different method that interacts with data at a different access level or format. Additionally, exploring API extensions or contact support if the documentation is not clear might also help pinpoint a workaround.