Quantcast
Channel: Rebex Q&A Forum - Recent questions and answers
Browsing all 3860 articles
Browse latest View live

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 Article


Answered: 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 Article


Answered: 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 Article

Sftp 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 Article

Implement 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 Article


Answered: 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 Article

Improve 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 Article

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 Article


Answered: 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 Article


Modbus 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 Article

Answered: 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 Article

More 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 Article

How 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 Article


Answered: 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 Article

Error 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 Article


Access 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 Article

Answered: 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 Article


SFTP 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 Article

Answered: 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 Article

Difference 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
Browsing all 3860 articles
Browse latest View live