0
votes
1answer
18 views
Can’t log in with SFTP
When trying to log in using SFTP I get this exception: "Message with invalid length 707406378 was received." I can connect to the server but I can not log in.
1
vote
1answer
20 views
Exception specification for Rebex API
Can you add to documentation a specification about exceptions, that methods in your API can throw?
Your exceptions, like SftpException, SshException, ProxySocketException, does n …
0
votes
1answer
20 views
REBEX FTP for .NETCF fails over GPRS/3G?
This is my VS2008 project setup/configuration (on Vista Business x86 with 3GB RAM) -
C# SmartDevice Project
Targeting Windows Mobile 6 Professional SDK, .NETCF 3.5
Running on Win …
0
votes
1answer
11 views
Ftp::GetFileSize does not allowing path with backslash.
I trying an execute a next code:
using (var client = new Ftp()) {
client.Connect("Server");
client.Login("UserName", "Password");
var size1 = client.GetFileLength(@" …
0
votes
1answer
23 views
How to download attachments with asp.net
I'm trying to make a Silverlight email client. Since there's no direct IMAP connection possible from silverlight, I've wrapped the email objects in objects. Attachments are the b …
0
votes
1answer
14 views
Cancelling Sftp::BeginGetFile(…)
I'm using the code like below for starting and cancelling operations:
var client = new Sftp();
// Connecting
client.BeginGetFile("Source", "Destination", null, null);
// …
if (Nee …
0
votes
2answers
18 views
Image from MailMessage
Hi,
I have in the example the following e-mail:
..
<p class=MsoNormal><o:p> </o:p></p>
<p class=MsoNormal><img width=384 height=371 id=" …
0
votes
1answer
13 views
space in folder name
Hello!
We have a problem with FTP component.
Consider this ftp site structure:
root
-> Dir with space
-> file with space.txt
...
When using Ftp.GetList() recursively, w …
0
votes
1answer
4 views
Sorting POP3 message list
Hi,
I want to sort the my messages by date. SO the newest email must show at the top. How can I do this?
I am using the following code.
Pop3 client = new Pop3();
clie …
0
votes
1answer
34 views
Sftp::BeginGetFile causes “releaseHandleFailed MDA”
ReleaseHandleFailed was detected
Message: A SafeHandle or CriticalHandle of type 'Microsoft.Win32.SafeHandles.SafeCapiKeyHandle' failed to properly release the handle with value 0x …
1
vote
2answers
31 views
Sftp::BeginGetFile blocks local (destination) file from reading during downloading
Can you share a local file for reading?
I know, that I can use an overloading with Stream parameter, but default behavior is strange.
I'm using the following code:
var client = n …
0
votes
1answer
19 views
Unable to connect to gmail via IMAP/POP3 with correct username/password
I'm trying to connect to my Gmail account. I'm sure, that correct username/password is provided.
I'm getting following error messages:
IMAP
Rebex.Net.Imap.Login throws Rebex.Net …
0
votes
2answers
45 views
Problem Connecting to ftp while transferring using Rebex.Net.Ftp
Adding more threads to upload while transferring, i get these errors while setting properties or connecting:
Stack Traces:
Rebex.Net.FtpException: Another operation is pending.
…
1
vote
1answer
46 views
Common interface/usage for FTP and SFTP
Is there a version of the library that has a common interface for Ftp and for Sftp. I need to toggle between the two in a library however because I don't see a common interface, I …
0
votes
1answer
16 views
FTP error 426 ( active mode or Passive mode )
I have a user report FTP error 426. Can anyone tell me ahwt situation would lead to that error ?
I habe 'googled' for som advice on it, but the only area where there is come rele …