如何在WINCE中添加WebServer组件
wince 5.0有自带的Web server组件.第三方比较好用的有GoAhead Web Server ,这是开源软件,而且支持Linux.
本文引用地址:https://www.eepw.com.cn/article/201610/305927.htm一、wince 5.0自带的Web server组件
步骤一:
在PB中添加以下组件:
Catalog item Sysgen variable Location in Catalog
Web Server (HTTPD) SYSGEN_HTTPD Communication Services and NetworkingServers
Web Server Administration ISAPI SYSGEN_ISAPI_CONFIG Communication Services and NetworkingServersWeb Server (HTTPD)
NTLM SYSGEN_AUTH_NTLM SecurityAuthentication Services (SSPI)
Internet Connection Sharing (ICS) SYSGEN_GATEWAY Communication Services and NetworkingNetworking Features
Reference Gateway User Interface
SYSGEN_GATEWAY_UI
Communication Services and NetworkingNetworking Feature
步骤二:
在project.reg中添加:
[HKEY_LOCAL_MACHINECOMMHTTPDVROOTS/WebAdmin]
@=“\windows\httpdadm.dll”
“a”=dword:0
[HKEY_LOCAL_MACHINECOMMHTTPDVROOTS/BasicOnly]
@=“\”
“a”=dword:1
“Basic”=dword:1
“NTLM”=dword:0
“dirbrowse”=dword:1
[HKEY_LOCAL_MACHINECOMMHTTPDVROOTS/NTLMOnly]
评论