日期:2014-05-17 浏览次数:21315 次
//创建HttpListener对象
using (HttpListener hlistener = new HttpListener())
{
//获取设置用户端身份验证
hlistener.AuthenticationSchemes = AuthenticationSchemes.Anonymous;
//设置url前缀
//hlistener.Prefixes.Add("http://localhost:8080/web/");
//通过IP来访问
hlistener.Prefixes.Add("http://+:8080/web/");
//接收传入请求
hlistener.Start();
while (true)
{
//等待传入请求
HttpListenerContext hlc = hlistener.GetContext();
//设置返回给客户端Http状态代码
hlc.Response.StatusCode = 200;
//获取客户端信息
string name = hlc.Request.QueryString["name"];
//进行验证判断
//if (name != null)
//{