ios本地服務(wù)器搭建

? ? ? 在開(kāi)發(fā)MDM的過(guò)程中,服務(wù)器端動(dòng)態(tài)生成描述文件后會(huì)有臨時(shí)文件保存在服務(wù)器端,拖慢服務(wù)器效率。為解決該問(wèn)題,服務(wù)器端將描述文件放在responseobject里返回給客戶端,客戶端搭建本地服務(wù)器,將描述文件存在本地服務(wù)器上,并調(diào)用safari訪問(wèn)本地服務(wù)器安裝描述文件。具體步驟:

1.下載CocoaHTTPServer,并加入project

2./*

*啟動(dòng)本地服務(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(@"啟動(dòng)失敗");

}

}

3.

-(void)launchLocalServer:(NSString *)config{

NSString *documentsDirectory =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];

//獲取文件路徑

NSString *filename = [documentsDirectory stringByAppendingPathComponent:@"config.mobileconfig"];

//將描述文件寫(xiě)入該目錄下

[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]];

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容