范冰冰跪舔老外图片:Ios HTTP Server

来源:百度文库 编辑:九乡新闻网 时间:2024/04/29 06:18:39

Simple way to embed a http server into your iPhone app

Posted by face on June 15, 2009

Announcing MongooseDaemon, an objective-c wrapper for the wonderful mongoose http server.

It can be indispensable to be able to explore your iPhone appsdirectory structure when developing and debugging iPhone applications.You may also want to serve up content from your iPhone application viahttp.

Erica Sadun’s cookbook has an example of a hand rolled http server.However, it is only an example and is incomplete. I recently needed ahttp server in an iPhone app and after playing with Erica’s example Iquickly realized I didn’t want to be in the business of creating acomplete http server.

So I started looking for an existing http server I could embed in my app. I quickly found moongoose.

With just a few minutes of coding, I was able to get mongooseworking in my iPhone application. To make it even easier for thenext developer, I extracted my wrapper into the MongooseDaemon class andam offering it under a BSD license.

Here is some example code taken directly from one of my apps I am debugging:

Add the following to one of your projects classes .h (MyAppDelegate.h for this example):
1
2
3
4
5
6
7
8
9
  #import "MongooseDaemon.h"
....
@class MongooseDaemon

@interface MyAppDelegate : NSObject {
...
MongooseDaemon *mongooseDaemon;
...
}
And add the following to the class ( MyAppDelegate.m for this example):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  ...
@implementation LightyAppDelegate
...
- (void)applicationDidFinishLaunching:(UIApplication *)application {
mongooseDaemon = [[MongooseDaemon alloc] init];
[mongooseDaemon startMongooseDaemon:@"8080"];

...
- (void)dealloc {
...
[mongooseDaemon stopMongooseDaemon];
[mongooseDaemon release];
...
}

Now you can surf to your application. For example, if your iPhones IP onwifi is 192.168.1.100 (sorry a helper method for determining your iPhonesIP will be coming soon), then you could surf to http://192.168.1.100:8080/

Serve files in good health!