I am writing Munit test cases for an application which has FTP/SFTP outbound endpoints.
To mock these outbound endpoints and to run my test cases standalone, I am using Munit FTP server. But I am unable to give 'path' attribute value other than '/tmp' in FTP/SFTP outbound compnent. If I try to give other value for 'path' attribute, I am getting below error.
Error '/SFTPDEV' occurred when trying to CDW to '//SFTPDEV'. (java.io.IOException)
In other applications it not accepting '/tmp' also. I am getting below error.
Error '/tmp' occurred when trying to CDW to '//tmp'. (java.io.IOException)
Can anyone please tell me what is the main reason for this error. Why it is unable to change the working directory and what would be the solution.