The .FolderExists(folderName) function returns false but SelectFolder works...
I'm logging into a mailbox hosted at fastmail.com and prior to selecting a folder, I verify it exists using imapClient.FolderExists(folderName). This works for all folders in the mailbox with the...
View ArticleAnswered: FileTransferClient: password is output if LogWriter LogLevel is set...
This is known behavior. The Verbose data is logged at the socket level as raw outgoing data (Sent data over control connection). For socket, it is just an ordinary raw data.We will address this and...
View ArticleAnswered: How to download all the .csv files with the file name starting with...
This can be easily done using the Rebex.IO.FileSet class:// define FileSet var set = new FileSet("/home/data"); set.Include("cash*.csv"); set.Include("EFT*.csv"); set.Include("DDR*.csv"); Then you can...
View ArticleSftp check integrity
Hi,I want to know how is guaranteed the integrity of the sftp file transfers. I mean is there a checksum after transfer? I try with sftp.Download option ActionOnExistingFiles.ResumeIfPossible, and...
View ArticleImplement FileSystem almost as MemoryFileSystemProvider.
Hello, I'm trying to implement my own FileSystem. I bet you know :))So I faced with few problems, do I understand correctly to implement something like Memory file system provider I need to create...
View ArticleAnswered: Sftp check integrity
The integrity of file transfer is guaranteed by SSH layer in sense: all data sent over the SSH channel is received by the remote end unmodified.There is no guarantee, that the file is not modified...
View ArticleImprove performance of GetFiles with a wildcard on a directory with a large...
I am noticing that GetList is somewhat slow on directories that contain a large amount of files. I am currently getting a list of how many matches there are in the remote directory before i decide...
View ArticleThe .FolderExists(folderName) function returns false but SelectFolder works...
I'm logging into a mailbox hosted at fastmail.com and prior to selecting a folder, I verify it exists using imapClient.FolderExists(folderName). This works for all folders in the mailbox with the...
View ArticleAnswered: Improve performance of GetFiles with a wildcard on a directory with...
Note: this is reaction to this comment.I am sorry. I got stuck with question title "Improve performance of GetFiles ..."It is possible to filter files on the fly using ListItemReceived event or by...
View ArticleModbus over SSH
I wanted to use Modbus TCP to talk to device (slave). I am planning to use nmodbus4 (https://github.com/NModbus4/NModbus4). How do I use Rebex SSH library with nmodbus4 to have secured communication.
View ArticleAnswered: How do I fix this â
Please, try to set different encoding. It is probably UTF-8. It can be done like this:terminal.Options.Encoding = System.Text.Encoding.UTF8;
View ArticleMore details about SshChannel.ExtendedDataReceived and SendBreak(breaklength)...
Note: This question was created from this comment.I have couple questions regarding the SshChannel. What is the ExtendedDataReceived event for? (What is extended data?)Does the SendBreak() simply send...
View ArticleHow to add SOAP message headers using Rebex custom WCF Binding
(Note, this was originally asked at comment)We got an Requirement for OpenUI , that we need to add the Header with credential and session Tokens attribute as part of Request , and parse the Header also...
View ArticleAnswered: More details about SshChannel.ExtendedDataReceived and...
SshChannel.ExtendedDataReceived:It provides data received by SSH_MSG_CHANNEL_EXTENDED_DATA packet. This is typically used by the server for stderr.Data provided by the Receive() method corresponds to...
View ArticleError message at PocketFTP
.Net Compact Framework 3.5 Windows Compact 7Hello Rebex Team, I'm new here therefore a possibly simple / unusual question. I still use the trial version but would soon like to buy the full version....
View ArticleAccess Denied on upload with 'Rebex tiny SFTP Server' and ssh2 node module
Please help I have always the Access denied error when i try to upload on server : conn.on("ready", () => { conn.sftp((err,sftp) => { if (err) throw err; var providedFileName = util.format("%s",...
View ArticleAnswered: Error message at PocketFTP
Rebex libraries such as Rebex FTP/SSL support three kinds of API:Synchronous API. This is straightforward, simple to use, and recommeded if you are new to Rebex libraries and to .NET's asynchronous...
View ArticleSFTP uploaded file : 0 byte
Hi,I'm currently trying the Rebex SFTP DLL.I want to upload a file with the PutFile method. I pass data to this method as a MemoryStream.All works fine, no exception, no error in the log file.But the...
View ArticleAnswered: Can Rebex SFTP send user / password + ssh-key ?
Yes, it is possible.Just simply use the Login(string userName, string password, SshPrivateKey privateKey) method overload.
View ArticleDifference between using SendCommand and using Send(FunctionKey.Enter)
Hi, I want to know if there is any difference of two cases below.case1: using SendCommandscripting.SendCommand(command) case2: using Send(FunctionKey.Enter)scripting.Send(command)...
View Article