tags:

views:

326

answers:

3

I want to implement one application in which i want to connect ftp server from the iphone by programming.Please help me for that.

Edit: I am using below code http://developer.apple.com/iphone/library/samplecode/SimpleFTPSample/

Its working fine.But when i am using my ftp server url at that time it gives open stream error.What is the problem can u explain me.

A: 

You can find a lot of information by googling "ftp protocol", but you you can here the RFC #114 which could be seen as the official specification of the protocol.

cedrou
+4  A: 

There is a sample provided by Apple in the SDK documentation that does exactly that:

http://developer.apple.com/iphone/library/samplecode/SimpleFTPSample/

Adrian Kosmaczewski
A: 

RFC 959 is the original standard for the FTP protocol. You can get a copy of this from this IETF Website. You can also download a free or free for personal use ftp server like filezilla or sysax ftp server to use for testing your iphone program. Hope this helps.

Haary