vote up 5 vote down star
2

I'm looking for an easy way for users to download content from an iPhone to their computer. I've seen other apps that actually turn the iPhone into a server and give the user an IP address to navigate to on their computer. I've glanced at some Apple samples, but nothing looked too much like what I was going for.

So what's the easiest way to make a server that listens on TCP port 80 (even better, an HTTP server) and sends responses? Hopefully using Objective C classes, but I can make a wrapper if there isn't anything available.

flag

This is an excellent question. I look forward to hearing an answer. – Greg Jan 26 at 3:02

3 Answers

vote up 3 vote down check

Google Toolbox for Mac has a class called GTMHTTPServer.

Deusty Designs has a project called CocoaHTTPServer.

You can't use port 80 because it requires root access.

link|flag
Deusty Design's project: Incredibly helpful, and simple to use! – Ed Marty Jan 30 at 20:02
By the way, IPv6 is not available on iPhone OS. But you may find that it works in the Simulator. So, beware. – Chris Lundie Jan 30 at 21:50
vote up 2 vote down

Cocoa provides lots of support for client-side networking but not a lot for server-side.

At the lowest level, you can use normal BSD sockets.

The next level up is CoreFoundation (plain C but using Cocoa-like types). Relevant CoreFoundation APIs are CFNetwork, CFSocket and CFStream (CFStream is a file-stream that can have its source through a network -- it is not a System V style network Stream).

In Objective-C, you can look at NSStream which is the Objective-C equivalent of CFStream.

link|flag
vote up 0 vote down

There is a good O'Reilly article on setting up a simple server.

How to Write a Cocoa Web Server

He uses NSFileHandle and NSSocketPort to setup a listener and handle requests. He also gets into some of the detail work of using the BSD sockets directly. I have had luck with this approach in the past.

This was written back in 2006, and I haven't used this on an iPhone project yet, but the classes he uses are pretty common. I would give it a fighting chance of working for an iPhone project.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.