Answered: How to use Sftp events
VS doesn't like the first approach because the SftpCommadSentEventHandler delegate is no longer present on modern platforms - it has been replaced with EventHandler<SftpCommandSentEventArgs>....
View ArticleSample App HttpsWebGetCF_CS and HttspWebServiceClientCF_CS not working?
I have purchased the Rebex to use with Handheld devices, winMobile 6.5 and WinCE. I added what I believe to be the correct code, and I get the error. Error while sending request:...
View ArticleAnswered: User public key ... could not be loaded: Unsupported key at line at...
Thank you for pointing to this issue.This is change in version 1.0.4, which now requires ~/.ssh/authorized_keys file format. However, we considered this as unwanted change and we will add automatic...
View ArticleIs ServerSession.Current thread safe?
Hello,The scenario is: collecting logs from a FileServer with Application Insights. Where applicable, we would like to include information such as UserName & SessionId with...
View ArticleAnswered: OpenPGP support
Unfortunately, we don't support OpenPGP and it is not part of our roadmap for the near future. We are sorry.
View ArticleAnswered: Sample App HttpsWebGetCF_CS and HttspWebServiceClientCF_CS not...
It seems that your device has no connection to internet.Are you able to connect to any site (e.g. http://test.rebex.net) using built-in web browser from your device?To run Rebex components, we need...
View ArticleRebex TLSException
Additional information:The mail account used in this case is the custom gmail accountHowever the smtp server remains gmail.comQuery:Is there a way to enable the rebex debug logs with out the code...
View ArticleSFTP versions support
SFTP Rebex client can communicate with SFTP server running on Windows / Linux / RTOS. Can you confirm this?Also SFTP v3 & v4 is supported by Rebex. I see there is v5 & v6. Will the Rebex SFTP...
View ArticleRebex.Net.SftpException: The connection was closed by the server.
I have an application in C # which sends txt files to a SFTP server, at the moment of starting the application it sends the files without problem, but if it has inactivity of sending files and when...
View ArticleAnswered: SFTP versions support
Rebex SFTP should be able to communicate with SFTP servers running on Windows / Linux / RTOS as long as they implement SSH v2 protocol and a compatible set of cipher suites.But the answer to the other...
View ArticleAnswered: Rebex TLSException
There is no way to enable Rebex debug logs without code changes unless the application that uses Rebex libraries has been designed to make this possible. We believe it is the responsibility of...
View ArticleHow to properly store EwsItemId in the database for later use
I'm using Rebex to send an email like this: // Get EwsItemId ewsItemId = _ewsClient.StoreMessage(EwsFolderId.Drafts, mailMessage); _ewsClient.SendMessage(ewsItemId, ewsFolder.Id); Then I grab the...
View ArticleAnswered: Missing Method Exception in Rebex.Sftp Package for .NET Standard
I assume that you have a .NET Standard 2.0 library that references Rebex SFTP, and you are using that .NET Standard 2.0 library from a .NET 4.6.x application (or library).If that's the case, then this...
View ArticleRecommend way to encrypt the USERID for my SFTP login.
I am using the SFTP client to login and like to know the recommend way to store off my USer ids in some encrypted file.loginKey = New SshPrivateKey("privatekey.pri") _client.Login("test", loginKey)so...
View ArticleHow to list multiple file types with multiple extensions while downloading...
I want to to avoid duplicate file listing while downloading files via rebex.Actually I got a solution for memory exception to fetch large volume of files from rebex for a single file type. But while...
View ArticleAnswered: Recommend way to encrypt the USERID for my SFTP login.
Since you use SshPrivateKey for client authentication, you can use it to encrypt the USERID.Encrypt like this:// load SSH private key var pk = new SshPrivateKey("privatekey.pri", "my-password"); string...
View Article"Not enough data"
Getting an exception System.InvalidOperationException:Not enough dataWith the following stack trace:at Rebex.Net.JS.HH() at Rebex.Net.JS.CH() at Rebex.Net.SftpAttributes..ctor(JS C, Int32 L) at...
View ArticleAnswered: Is it possible to do a Rebex.Net - SSH-connection with ProxyType...
It looks like you are trying to connect to an SSH server through an intermediate SSH server (using it as a proxy).This is supported by Rebex SSH, but it's done differently than in PuTTY, which has to...
View ArticleHow to list files without duplication by registering the event only once in...
I had an issue of fetching bulk volume of files inward via sftp. It worked fine by fetching on the fly and also by registering and unregistering the same for each loop call.For much more perfection, I...
View Article