? ? ? 在開發(fā)MDM的過程中,服務(wù)器端動態(tài)生成描述文件后會有臨時文件保存在服務(wù)器端熬甫,拖慢服務(wù)器效率胰挑。為解決該問題,服務(wù)器端將描述文件放在responseobject里返回給客戶端椿肩,客戶端搭建本地服務(wù)器瞻颂,將描述文件存在本地服務(wù)器上,并調(diào)用safari訪問本地服務(wù)器安裝描述文件郑象。具體步驟:
1.下載CocoaHTTPServer,并加入project
2./*
*啟動本地服務(wù)器端口
*/
- (void)startServer
{
_httpServer = [[HTTPServer alloc] init];
[_httpServer setType:@"_http._tcp."];
[_httpServer setPort:12345];
NSString *documentsDirectory =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
//設(shè)置服務(wù)器根路徑
[_httpServer setDocumentRoot:documentsDirectory];
NSError * error;
if([_httpServer start:&error])
{
NSLog(@"start server success in port %d %@",[_httpServer listeningPort],[_httpServer publishedName]);
}
else
{
NSLog(@"啟動失敗");
}
}
3.
-(void)launchLocalServer:(NSString *)config{
NSString *documentsDirectory =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
//獲取文件路徑
NSString *filename = [documentsDirectory stringByAppendingPathComponent:@"config.mobileconfig"];
//將描述文件寫入該目錄下
[config writeToFile:filename atomically:YES encoding:NSUTF8StringEncoding error:nil];
[self startServer];
//本地服務(wù)器地址
NSString *path = [NSString stringWithFormat:@"http://localhost:12345/config.mobileconfig"];
//調(diào)用safari安裝描述文件
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:path]];
}