Answered: "Connection was closed by the remote connection end." unable to...
Some of our customers already experienced this problem with Rebex SMTP client on .NET CF connecting to gmx.net mail servers.It is actually the Diffie-Hellmann group exchange algorithm which takes...
View ArticleAnswered: Check Connection
If you get an exception the key is to handle it properly in your code.Unless the Status of the exception is set to ProtocolError, then you will have to reconnect for sure. The IsConnected property...
View ArticleAnswered: Timezone is not getting from Mailmessage Date in Rebex mail
Hi,This looks like Yahoo mail server issue . A Stack Overflow question IMAP date filter issue seems to describe what might be a related issue with Yahoo and IMAP.Could you please download the message...
View ArticleAnswered: I'm having a problem connecting to an IceWarp Server using IMAP.
Have you tried connecting using TLS 1.0, 1.1 or 1.2? SSL 3.0 is an unsecure legacy protocol that should no longer be used (see http://disablessl3.com/ for more information).It looks like we have forgot...
View ArticleAnswered: Invalid Socks5 response.
Please create a log of communication with LogLevel.Verbose so that we can see what is wrong with the Socks5 response. Then either post the log here or send it to support@rebex.net.Please note that...
View ArticleAnswered: Rebex File Transfer Pack Version confusion
The product you need is Rebex File Transfer Pack for .NET. Here is the purchasing page.All Rebex products can be bought in standard binary edition or optionally under source code edition (more...
View ArticleAnswered: ECDSA Support
Thank you for your question. More and more customers are requesting the ECDSA to be added. It is already on our roadmap and we plan to add it later, however currently we cannot promise a firm date or...
View ArticleAnswered: How to create mail message draft
You can make the message read-write by setting the X-Unsent flag into the message headers:var msg = new MailMessage(); msg.Subject = "Subject"; msg.Headers.Add("X-Unsent", "1"); // <-- that's it...
View ArticleAnswered: Using SQL to store users for SFTP Server
Yes, this is possible with Rebex File Server component. Just implement your own custom authentication provider with the help of the Authentication event, e.g.:// register authentication event handler...
View ArticleAnswered: ftp.FileExists() returns false when file is present in server.
There is no direct support for checking of file existence in the FTP protocol. So we "simulate" the method with a number of detections in Rebex.Net.Ftp client. Your FTP server does not support the MLST...
View ArticleAnswered: ftp.GetList() method is not returned soft links items which is...
Update: This has been fixed in Rebex FTP/SSL 2015 R4.Thanks for the logs, now I can see that this is an already known bug, to fix it please download the trial hotfix and give it a try. The fix will be...
View ArticleAnswered: Cannot connect and ECONNREFUSED error message
FTP server at ftp.adrive.com resolves into multiple addresses:c:\>nslookup ftp.adrive.com Server: triton.hq.rebex.cz Address: 192.168.2.3 Non-authoritative answer: Name: ftp.adrive.com Addresses:...
View ArticleAnswered: How to find servers are FXP support or not Support ?
The server-to-server (so called "FXP") feature is part of the FTP protocol. When the FTP protocol was designed no one thought that FTP server administrators will be disabling this feature and thus...
View ArticleAnswered: Do we have any event to notify that ftp is free for operations.
The recommended and most reliable way is to wait until the current method (be it sync or async) finishes and only when it has finished then call another method. So when you start an operation and you...
View ArticleAnswered: How to get FXP transfer progress.
The Ftp.TransferProgressChanged event notifies you about data transfer between the Rebex.Net.Ftp client and the server to which the client is connected. It will not get fired in case of...
View ArticleAnswered: E-Mail Body Encoding
We looked into your mail and found that it is corrupted: 1. Mail is Unicode .msg file, it states that all text fields are Unicode encoded, but the Body is stored using the Windows-1252 encoding 2....
View ArticleAnswered: New Rebex Web Client Beta?
Yes, this is possible.ASMX/WSDL generates stub objects that are inherited from System.Web.Services.Protocols.SoapHttpClientProtocol, which provides a protected virtual WebRequest GetWebRequest(Uri uri)...
View ArticleAnswered: Getting an error 550 Local policy requires CCC when trying to get...
It looks like the server is only able to transfer data when the control connection has been reverted to unencrypted mode after a (successful and secure) authentication.Please try calling...
View ArticleAnswered: Getting error Can't build data connection: Connection timed out...
This looks like the FTP server (or firewall) is having troubles with establishing data connections even when the control connection has been reverted to unencrypted mode...Are you able to connect using...
View ArticleAnswered: Smtp.Send two times at once (
Time does not matter to the Smtp object, so this is most likely a server issue. Could you please create a communication log showing both successful and unsuccessful attempts and either post them here...
View Article