用cpprest库 写的http服务端的 例子,包括get\postd等和json数据解析; 头文件报错的话,修改工程属性中—>配置属性->VC++目录: 包含目录修改为: .\cpprest\include 库目录修改为: .\cpprest\lib\x64\release 去掉了环境变量引用。
2021-08-24 11:07:14 17.83MB HTTP 服务器例子
1
Mongoose is easy to use web server. It also can be used as embedded web server library to provide web interface to applications. Mongoose executable does not depend on any external library or configuration. If it is copied to any directory and launched from there, it starts to serve that directory on port 8080 (so to access files, go to http://localhost:8080). If some additional config is required - for example, different listening port or IP-based access control, then a mongoose.conf file with respective options can be created in the same directory where executable lives. This makes Mongoose perfect for all sorts of demos, quick tests, file sharing, and Web programming.
2021-08-23 19:39:26 97KB mongoose
1
java写的http服务器源码,有注释,适合初学者学习。可以直接使用。
2021-08-16 16:03:27 21KB http web 服务器
1
Gunicorn 'Green Unicorn' 是一个用于 UNIX 的 Python WSGI HTTP 服务器。 这是一个 pre-fork 工人模型。 Gunicorn 服务器与各种 Web 框架广泛兼容,实现简单,服务器资源少,速度相当快。 您可以使用命令运行 Gunicorn,也可以与流行的框架(如 Django、Pyramid 或 TurboGears)集成。 要在生产中部署 Gunicorn,请参阅部署 Gunicorn。 安装 Gunicorn 后,您将可以访问命令行脚本 gunicorn。 Gunicorn 还为 Django 和 Paste Deploy 应用程序提供集成。 如果未指定,Gunicorn 将查找 WSGI 可调用命名应用程序。 所以对于一个典型的 Django 项目。 Pyramid 和 Turbogears 等框架通常使用粘贴部署配置文件进行配置。 如果您想在 Gunicorn 中使用这些文件,有两种方法。 作为服务器运行器,Gunicorn 可以使用来自框架的命令(例如 pserve 或变速箱)为您的应用程序提供服务。
2021-08-10 15:04:32 473KB 开源软件
1
跨平台:Linux / Unix,QNX,eCos,Windows,Android,iPhone支持 单线程,异步,基于事件的非阻塞API 内置的协议: 普通TCP,UDP的平原,SSL / TLS(传输,单向或双向) HTTP客户端,服务器 WebSocket客户端,服务器 JSON-RPC客户端,服务器 MQTT客户端,服务器 CoAP客户端,服务器 DNS客户端、DNS服务器、异步DNS解析器 源代码基于ISO C和ISO C++标准 集成简单,只有一个.c和.h文件 经过广泛的测试,已经维护了十年,并被NASA、dell和RocketUncle公司集成
2021-08-09 16:00:36 8.24MB http服务 web复制 支持get post
1
C#利用.Netframework 4.5.2 自作小型Http服务器完整代码,有WebApi例子,有静态页面请求例子,静态页面采用Vue+iView,本程序完全支持
2021-08-07 10:45:15 4.05MB C# SelfHost WebApi iView
1
HttpMockServerTool,经过简单配置可模拟HTTP/HTTPS服务器接口。 微型HTTP服务器-HttpMockServerTool
2021-08-03 17:15:42 109KB HTTP 服务器 httpservermockto httpmockserverto
1
这是一个http server ,可以接受get post 请求,根据需求查询数据库并返回数据。完整的server代码,无client代码
2021-08-03 14:29:15 11.06MB netty http server
1
服务器扫描发现漏洞,其中一个是: 可通过HTTP获取远端WWW服务信息 [Microsoft-IIS/8.5] 漏洞描述 本插件检测远端HTTP Server信息。这可能使得攻击者了解远程系统类型以便进行下一步的攻击。 解决方案 NSFOCUS建议您采取以下措施以降低威胁 打开网页,审查代码,我们发现这几个标头明显标明我们的服务器和平台信息,存在安全风险,必须要隐藏。当前这个版本是.net4.0的。使用时,将文件名,修改为:CustomHttpModules.dll。 拷贝DLL到网站BIN目录,修改网站的 Web.config
2021-08-02 10:17:50 5KB iis
1
http-server 是简单的零配置命令行 http 服务器。提供的选项:-p Port to use (defaults to 8080)-a Address to use (defaults to 0.0.0.0)-d Show directory listings (defaults to 'True')-i Display autoIndex (defaults to 'True')-e or --ext Default file extension if none supplied (defaults to 'html')-s or --silent Suppress log messages from output--cors Enable CORS via the Access-Control-Allow-Origin header-o Open browser window after staring the server-c Set cache time (in seconds) for cache-control max-age header, e.g. -c10 for 10 seconds (defaults to '3600'). To disable caching, use -c-1.-P or --proxy Proxies all requests which can't be resolved locally to the given url. e.g.: -P http://someurl.com-S or --ssl Enable https.-C or --cert Path to ssl cert file (default: cert.pem).-K or --key Path to ssl key file (default: key.pem).-r or --robots Provide a /robots.txt (whose content defaults to 'User-agent: *\nDisallow: /')-h or --help Print this list and exit. 标签:httpserver
2021-08-01 11:15:43 162KB 开源项目
1