/// <summary> /// 异步Http服务器 /// </summary> class AsyncHttpServer { readonly HttpListener _listener; //相应信息 const string RESPONSE_TEMPLATE = "<html><he
分类:
Web程序 时间:
2016-03-10 14:08:41
阅读次数:
193
写在前面 前面两篇文章分别介绍了基于原始socket的web服务器和基于tcpListener的web服务器,本篇文章将继续介绍另外一种基于HttpListener的。 HttpListener HttpListener进一步的简化了Http协议的监听,仅需通过字符串的方法提供监听的地址和端口号以及
分类:
Web程序 时间:
2016-02-16 10:08:03
阅读次数:
545
1.using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.Net.Sockets;using System.Threading;u...
分类:
Web程序 时间:
2015-08-09 20:22:32
阅读次数:
154
c#原始提供了http的监听的类HttpListener,实现了简单的http。文章地址《C# 控制台或者winform程序开启http的监听状态》但是经过我测试,这个HttpListener提供的真的就只是简单的http监听功能,无法实现高并发处理。不知道是我处理问题还是其他什么原因,无法实现,当...
var t = new Thread(new ThreadStart(() => { HttpListener listener = new HttpListener(); var prefix = string.F...
分类:
Web程序 时间:
2015-04-05 13:12:49
阅读次数:
138
1 public class THttpListener 2 { 3 HttpListener listerner; 4 /// 5 /// 6 /// 7 /// 格式 http://*/...
分类:
Windows程序 时间:
2015-03-11 10:27:29
阅读次数:
3138
1.Start-All Programs - 2.execute below lines on that ‘Developer Command Prompt..’ tool makecert -n "CN=vMargeCA" -r -sv vMargeCA.pvk vMargeC...
分类:
Web程序 时间:
2015-02-10 18:40:31
阅读次数:
248
引言此篇是《【轮子狂魔】抛弃IIS,向天借个HttpListener - 基础篇(附带源码)》的续篇,也可以说是提高篇,如果你对HttpListener不甚了解的话,建议先看下基础篇。这次玩的东西有点多了,大致分为如下几个方向:1.支持静态页面2.Ur映射l执行方法3.Url映射执行Lua脚本4.模...
一. VS调试在Win7(vista系列)操作系统下 HttpListener无法绑定多个 指定IP、端口问题 来自:http://www.cnblogs.com/ryhan/p/4195693.html 现象:System.Net.HttpListenerException (0x8000...
目录介绍Web Server在Web架构系统中的作用Web Server与Web网站程序的交互HTTPListener与Socket两种方式的差异附带Demo源码概述Demo效果截图总结介绍本篇文章主要介绍使用HTTPListener类型自己动手创建一个Web Server,创建的Web Serve...
分类:
Web程序 时间:
2014-10-14 17:21:19
阅读次数:
143