while exploring file in FTP getting error.

0
com.mendix.systemwideinterfaces.MendixRuntimeException: net.schmizz.sshj.sftp.SFTPException: /   com.mendix.systemwideinterfaces.MendixRuntimeException: net.schmizz.sshj.sftp.SFTPException: /TR0313xx/TR031346: does not exist     at SFTP.SFTP_Open (JavaAction : 'Change directory')     at {"name":"SFTP.Connect","type":"JavaAction"}     at SFTP.IVK_OpenExplorer_TestRequest (JavaAction : 'Connect') Advanced stacktrace:     at com.mendix.modules.microflowengine.MicroflowUtil.processException(MicroflowUtil.java:83) Caused by: com.mendix.systemwideinterfaces.MendixRuntimeException: net.schmizz.sshj.sftp.SFTPException: /TR0313xx/TR031346: does not exist     at com.mendix.modules.microflowengine.MicroflowUtil.processException(MicroflowUtil.java:83) Caused by: net.schmizz.sshj.sftp.SFTPException: /TR0313xx/TR031346: does not exist     at com.mendix.modules.microflowengine.MicroflowUtil.processException(MicroflowUtil.java:83) Caused by: /TR0313xx/TR031346: does not exist     at com.mendix.modules.microflowengine.MicroflowUtil.processException(MicroflowUtil.java:83)  
asked
1 answers
0

Hi Rekha,

The error message indicates that there is an issue with the SFTP (Secure File Transfer Protocol) connection in your Mendix application. It seems that the specified directory path "/TR0313xx/TR031346" does not exist. To troubleshoot,

  • Verify Directory Path:

    • Double-check the specified directory path ("/TR0313xx/TR031346") for correctness.
    • Ensure that the directory exists on the SFTP server.
  • Check SFTP Server Connection:

    • Confirm that the SFTP server is running and accessible.
    • Verify the hostname, port, username, and password used for the SFTP connection.
    • Ensure that the connection details are accurate and match the server configuration.
  • Validate Permissions:

    • Ensure that the user account used for the SFTP connection has proper permissions to access the directory.
    • Verify that the user has read and write permissions for the specified directory path.
  • Test the Connection:

    • Use a standalone SFTP client or tool to test the connection manually.
    • Verify if you can access the directory using the SFTP client.
    • This can help identify if the issue is specific to the Mendix application or a general connectivity problem.

Hope it helps!!!

answered