visual studio 2008 - Device emulator and FTP, inside a c# mobile application project -


For my C # mobile application developed with Visual Studio 2008, I am trying to use FTP. FTP works fine with the real device, but when I use the device emulator, it does not work: the connection is successful, but fails to encrypt to get the data. Both of them use Windows Mobile 5

Did you have any of these already problems? When I googlised, it seems recurring, but has not been solved yet.

Here is the log displayed by the FTP server.

(000001) 04/05/2009 09:50: 59 - (not logged in) (127.0.0.1)> Connected, sending welcome message ...

(000001 ) 04/05/2009 9:50:59 - (not logged in) (127.0. 0.1)> 220-file district server version 0.9.31 beta

(000001) 04/05/2009 9: 50:59 - (not logged in) (127.0.0.1)> 220 ftp server

(000001) 04/05/2009 9:50:59 - (not logged in) (127.0.0.1) > User A

(000001) 04/05/2009 09:50: 59 - (not logged in) (127.0.0.1)> Required password for 331 AS

(000001 ) 04/05/2009 9:51:00 - (not logged in) (127.0.0.1)> PASS **

(000001) 04/05/2009 9:51:00 - AA (127.0 .0.1)> 230 logged on

(000001) 04/05/20 09 09: 51: 01 - AA (127.0.0.1)> SYST

(000001) 04/05/2009 9:51:01 - AA (127.0.0.1)> 215 FileZilla counted by UNIX < / P>

(000001) 04/05/2009 9:51:01 - AA (127.0.0.1)> CWD /

(000001) 04/05/2009 9:51:04 - AA (127.0.0.1)> PAASV ​​

(000001) 04/05/2009 9:51:04 - AA (127.0.0.1)> 227 Entering in Passive Mode (127,0,0,1 , 5, 22)

(000001) 04/05/2009 9:51:41 - AA (127.0.0.1)> Disconnected.

When I worked with this mobile content some time ago, I have no real solution But maybe some explanation

As you can see that the problem is fixed after entering the idle mode. As you can see, the used IP address is 127.0.0.1, which can also be used for passive mode (with used ports). I think the emulated network stack has some problems working with this virtual connection (with the localhost address), so you might not want to use Idle mode to work on it.

Another way to get more into this problem will be recording with communication and trying to check whether the stimuli gets worse. But if you have a deep knowledge of TCP IP and all this stuff, then it will do some work.


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -