Negotiation failed. The server key was rejected by the client.?
Negotiation failed. The server key was rejected by the client."I am getting this exception after trying to use latest Regex libs Sharing the logs also 2020-11-26 03:43:01.050 Opening log file....
View ArticleFtpItem.ItemParse not called for Sftp?
It seems FtpItem.ItemParse event is not called for Sftp?We tested this site: demo.wftpserver.com:2222 and found out the listing does not parse the file permissions and the owner/group correctly so we...
View ArticleAnswered: Negotiation failed. The server key was rejected by the client.?
This error message indicates that the server's public key was rejected by your application's event handler for Sftp object's FingerprintCheck event.Sample code to reproduce this exception:var sftp =...
View ArticleTlsSession always null
Why HttpRequestCreator.Settings.SslSession is always null? I want to reuse tls session, but i can't get it since it is not saved in settings
View ArticleIs there any way to directly upload a azure blob to an sftp server location?
I do have a requirement. Files stored in my azure storage needs to be transferred to SFTP server directly in C#. Now I am getting the stream of the blob first then writting the stream to SFTP location...
View ArticleAnswered: TlsSession always null
Please note that TLS sessions are resumed automatically in Rebex HTTP (unlike in other Rebex components).For reusing TLS connections you just need to use the same instance of the HttpRequestCreator...
View ArticleFtpItem.ItemParse not called for Sftp?
It seems FtpItem.ItemParse event is not called for Sftp?We tested this site: demo.wftpserver.com:2222 and found out the listing does not parse the file permissions and the owner/group correctly so we...
View ArticleDocker Monitor Console To Remote Syslog
Client Project Codeclass Program { static async Task Main(string[] args) { while (true) { Console.WriteLine($"Hello:{DateTime.Now}"); await Task.Delay(1000); } } } Console Output Server Project Code...
View ArticleSome questions regarding FileServer / custom filesystem implementation...
Hi,I am in the process of implementing a rather special filesystem and have come across some things that would help with "how to implement" certain aspects:Is Serversession.Id unique? Does it ever get...
View ArticleAnswered: emails being sent multiple times
Hi,The log indicates that receiving response when your application sends an email is not received in time as you can read on this lineRebex.Net.HttpException: Response reading timeout.It seems that...
View ArticleUnable to zip and encrypt 100 MB file
We have a simple code that tries zip and encrypt a file. That code works perfectly for the moderately size files. However, when we try to encrypt and zip the file that has the size of 100MB, the...
View ArticleTiny SFTP Server fails to read public key file
I am running the Tiny SFTP Server (v1.0.10) with the following config setting:<add key="userPublicKeyDir" value="c:\Testing\public-keys" /> In that folder I have the following public key...
View ArticleDetails on RSA encryption used by SshPrivateKey.Generate
Hello,Are there more details available on the algorithm used to generate an SSH private key with RSA?ie. when calling:SshPrivateKey.Generate(SshHostKeyAlgorithm.RSA)What isthe algorithm (like...
View ArticleAnswered: Unable to zip and encrypt 100 MB file
There is only 4GB size limit for standard ZIP format. There should be no issues for files around 100MB.Can you please try to add the file using FileStream and print its length and position at the start...
View ArticleAnswered: Tiny SFTP Server fails to read public key file
Try converting the public key to ssh2 format, e.g. usingssh-keygen.exe -f key.pub -e -m RFC4716 > key2.pub
View ArticleChange in behavior of Sftp.CreateDirectoryAsync or Sftp.IsConnected?
[Short version]I am wondering if there were any changes between builds 6821 and 7077 of Rebex SFTP that could affect the behavior of either of the following:(1) Sftp.CreateDirectoryAsync, causing it to...
View ArticleAnswered: Virtual File System for Azure Blog Storage Error (Similar to Oct27...
Hello XM, thanks for the question and welcome to the Rebex forum. From the description provided, I can only guess that an exception has been thrown from the Azure BlobClient (Azure stream). We had...
View ArticleCreate a Telnet to SSH proxy
Hi,We have an app that has Telnet connection to a server, and we need to change that to SSH. Unfortunately we don't have the sources.One option we are considering is to create a small proxy app that...
View Articleftp.GetList() does not return any files.
Hi!I am connecting to a BulletProof FTP Server (2019.0.50) which is hosted on a Windows 2012 server. Every time I search for files in a folder, even though there are files on the server, GetList()...
View ArticleAnswered: Create a Telnet to SSH proxy
This is very interesting case of use. Well, Rebex supports both Telnet and SSH protocols. Unfortunately, we have only Telnet client. However, our API allows you to implement your own transport layer,...
View Article