Answered: Facing issues using PutFIleasync
The file is not created or it has zero length?If zero length file is created, please ensure that ms.Position = 0 first.If the file is not created at all, please post here or send to support@rebex.net...
View ArticleAnswered: Possibility to catch the beggining of file transfer.
The most simple way would be to utilize the PathAccessAuthorization event to detect opening of a file for writing:var server = new FileServer(); ... server.PathAccessAuthorization += (sender, args)...
View ArticleAnswered: Events:Authentication and PreAuthentication
The PreAuthentication event is raised when authentication is about to start for a specific user account, but before any credentials have been transmitted. Its main purpose is to make it possible to...
View ArticleAnswered: Cannot sign message using USB TOKEN A3
The problem was related to MS CryptoAPI.We added workaround for "eToken Base Cryptographic Provider". The .NET PrivateKey is used instead of MS CryptoAPI.This workaround will be included in release...
View ArticleHow to open FileNode in stream for further transition?
Hello, I'm trying to receive the file in custom realisation of FileSystem and move it without saving on remote server. For that, I need to get the stream of file, how can I do that in such...
View ArticleAnswered: How to open FileNode in stream for further transition?
Method protected override FileNode CreateFile(DirectoryNode parent, FileNode child) should create empty file.I think that this method is not suitable for your scenario.I am assuming from other...
View ArticleAnswered: i do get error return message of error11002
Error 11002 is WSATRY_AGAIN, which means "Nonauthoritative host not found" . It's an issue at the TCP/IP layer and its documentation states:This is usually a temporary error during host name resolution...
View ArticleAnswered: Does Secure Mail support RSASSA-PSS signed certificates?
Yes, RSASSA-PSS certificates are supported.You can try it for yourself on e.g. this sample certificates var cert = Certificate.LoadDer(file); Console.WriteLine(cert.GetSubject());...
View ArticleRebex SFTP over Open source
Why should I choose Rebex SFTP over Renci ssh.net?https://github.com/sshnet/SSH.NET
View ArticleAnswered: License transfer
Yes, this is OK. When the development is over please contact support@rebex.net and we will transfer the license to the new owner.
View ArticleAnswered: Rebex SFTP over Open source
Rebex SFTP comes with professional support. If you run into an issue, our team will do the best to help you.Rebex SFTP supports modern SSH ciphers such as AES/GCM, ECDH or ECDSA (or Ed25519 with a...
View ArticleAnswered: Extracting Embedded Image from RTF (Rich Text) *.eml File
We will look into this. We do aim to support RTF emails with embedded images - however, we do so by converting RTF emails to HTML emails. Unless you have switched off this conversion, RTF .eml files...
View ArticleAnswered: Paste from clipboard with middle mouse button/wheel
Unfortunately, there is no option to modify this. But you can do it manually like this:// disable default mouse paste terminal.MousePasteEnabled = false; // define mouse paste for middle button...
View ArticleSSH client not connecting
I just purchased the full version of the terminal emulator. I was able to establish an SSH connection successfully with the trial version, but now I cannot connect to my device using the purchased...
View ArticleAnswered: SSH client not connecting
Yes, for full version you don't need activation code. It seems that you are still using trial version.If you are using NuGet version, please get your key at...
View ArticleSetting FtpProxyType through FileTransferClient
FileTransferClient has the Proxy property of type ProxyType instead of FtpProxyType. Does that mean there is no way to set proxy type to FtpSite, FtpUser, etc. through the FileTransferClient?
View ArticleAnswered: SSH client not connecting
Lukas:I downloaded the link sent when I purchased the full version and received: RebexTerminalEmulation-2018R1.1-Full-(a series of letters here).exe I ran uninstall trial version and installed the...
View ArticleGetNodeSurrogate event handler.
Hello, could you help me with an example of implementing GetNodeSurrogate event handler? I want to implement assignment to the e.ResultNode the value of the root directory. But when I do e.ResultNode =...
View ArticleHow can I save a CertificationRequest out to a .csr file?
I found this question and was able to successfully create a CertificationRequest:http://forum.rebex.net/6566/how-can-i-create-a-self-signed-server-certificateBut how do I save this out to a .csr file?...
View ArticleAnswered: GetNodeSurrogate event handler.
I think that this question is just a variation of your previous question ( http://forum.rebex.net/8366/how-to-open-filenode-in-stream-for-further-transition ).Your implementation of the...
View Article