SFTP Module - SETSAT unsupported

0
Good day everyone, I implemented SFTP module in order to send a CSV file to another system via SFTP.  1- The connection is successful i checked it. But there is an issue while putting the file. The flow goes down. and i got this error: net.schmizz.sshj.sftp.SFTPException com.mendix.systemwideinterfaces.MendixRuntimeException: net.schmizz.sshj.sftp.SFTPException: SETSTAT unsupported  at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.scala:110)   Caused by:net.schmizz.sshj.sftp.SFTPException: SETSTAT unsupported  at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.scala:110)   Caused by:SETSTAT unsupported  at com.mendix.basis.actionmanagement.ActionManager.executeSync(ActionManager.scala:110)     Any suggestion is appreciated. 
asked
1 answers
2

That is a problem on the other end. There could be multiple reasons:

  • On some systems (e.g. Linux), you need to be an owner of the file (write permissions are not enough) to modify its permissions or timestamp.
  • Some servers do not support updating file timestamp or permissions at all.

So contact the owner of the SFTP system and let their end check it out.

Regards,

Ronald

 

 

answered