【.Net MF网络开发板研究-02】Http Server功能演示

简介: 文章介绍的是真正的Http Server,支持GET和POST功能。同样我们还是在官方示例Http Server上进行修改,为了使示例更清晰,我们尽可能把代码做的更简单一些。

在上一篇博文中介绍的Web Server,其实是Socket编程应用,我们这篇文章介绍的是真正的Http Server,支持GET和POST功能。

同样我们还是在官方示例Http Server上进行修改,为了使示例更清晰,我们尽可能把代码做的更简单一些。

主程序直接修改为如下代码:

        public static void Main()

        {

            try

            {

                RunServer("http");

            }

            catch (Exception e)

            {

                Debug.Print(e.Message);

            }

        }

核心代码就是对GET和POST请求的支持,这里我们不要变,代码如下:

internal static void RunServer(string prefix)

     {

            HttpListener listener = new HttpListener(prefix, -1);                    

            listener.Start();

            while (true)

            {

                HttpListenerResponse response = null;

                HttpListenerContext context = null;

                try

                {

                    context = listener.GetContext();

                    response = context.Response;

                    HttpListenerRequest request = context.Request;

                    switch (request.HttpMethod.ToUpper())

                    {

                        case "GET":  GetRequest(context);  break;

                        case "POST": PostRequest(context); break;

                    }

                    if (response != null)

                    {

                        response.Close();

                    }

                }

                catch

                {

                    if (context != null)

                    {

                        context.Close();

                    }

                }

            }

        }

GET 请求处理代码如下,我们进行了大幅度的简化和调整,并且增加了一个upload.asp处理模块,代码如下:

   private static void GetRequest(HttpListenerContext context)

        {

            HttpListenerRequest request = context.Request;

            HttpListenerResponse response = context.Response;

            string strFilePath = GetPathFromURL(request.RawUrl);

            Debug.Print(strFilePath);

            response.StatusCode = (int)HttpStatusCode.OK;

            // Start HTML document

            string strResp = "<HTML><BODY>.Net Micro Framework Example HTTP Server<p>";

            // Print requested verb, URL and version.. Adds information from the request.

            strResp += "HTTP Method: " + request.HttpMethod + "<br> Requested URL: \"" + request.RawUrl +

                "\"<br> HTTP Version: " + request.ProtocolVersion + "\"<p>";        

 

            if (strFilePath.ToLower() == "\\upload.asp")

            {

                strResp += Resource1.GetString(Resource1.StringResources.PostForm);

            }

            else

            {

                strResp += "File to access " + strFilePath + "<p>";

                strResp += "Directory: \"" + strFilePath + "\" Does not exists";

            }

            // Closes HTML

            strResp += "</BODY></HTML>";

            // Sends it.

            byte[] messageBody = Encoding.UTF8.GetBytes(strResp);

            response.ContentType = "text/html";

            response.OutputStream.Write(messageBody, 0, messageBody.Length);

        }

POST处理部分,我们也进行了简化,不过变化不大,相关代码如下:

  private static void PostRequest(HttpListenerContext context)

        {

            // Retrieves request and response.

            HttpListenerRequest request = context.Request;

            HttpListenerResponse response = context.Response;

 

            // Allocates buffer for reading of message body

            byte[] postdata = new byte[BUFFER_SIZE];

 

            // Now reads the posted data. The content length should be supplied.

            // It is error not to have content length with post request.

            if (request.ContentLength64 > 0)

            {

                Debug.Print("Request Headers:");

                Debug.Print(request.Headers.ToString());

 

                long totalBytesReceived = 0;

                long contLen = request.ContentLength64;

                while (totalBytesReceived < contLen)

                {

                    int bytesToRead = (int)(contLen - totalBytesReceived);

                    // Limit to buffer size

                    bytesToRead = bytesToRead < BUFFER_SIZE ? bytesToRead : BUFFER_SIZE;

 

                    int dataRead = request.InputStream.Read(postdata, 0, bytesToRead);

                    if (dataRead == 0)

                    {

                        // Definitely some error. Means file incomplete.

                        break;

                    }      

                    totalBytesReceived += dataRead;

                };

               

                // Sends response:

                string strResp = "<HTML><BODY>.Net Micro Framework Example HTTP Server<p>";

                // Print requested verb, URL and version.. Adds information from the request.

                strResp += "HTTP Method: " + request.HttpMethod + "<br> Requested URL: \"" + request.RawUrl +

                    "\"<br> HTTP Version: " + request.ProtocolVersion + "\"<p>";

                strResp += "Amount of data received in message body: " + totalBytesReceived + "<br>";

                strResp += "Data of message body is discarded (if there is no filesystem). Please review HTTP Server sample code to add processing of data";

                strResp += "</BODY></HTML>";

                response.StatusCode = (int)HttpStatusCode.OK;

                byte[] messageBody = Encoding.UTF8.GetBytes(strResp);

                response.ContentType = "text/html";

                response.OutputStream.Write(messageBody, 0, messageBody.Length);

            }

            else // Content length is missing, send error back

            {

                // Sends response:

                string strResp = "<HTML><BODY>Content length is missing in Post request</BODY></HTML>";

                byte[] messageBody = Encoding.UTF8.GetBytes(strResp);

                response.ContentType = "text/html";

                response.OutputStream.Write(messageBody, 0, messageBody.Length);

            }

        }

好了,程序编写好后,直接部署到开发板上进行运行,连接PC,打开IE 浏览器,输入http://192.168.0.100/a.txt,效果如下:
image.png

本意是如果存在a.txt文件,则下载a.txt的内容,不过我们在代码中没有处理。

下面演示一下POST的使用,在IE浏览器中输入:http://192.168.0.100/Upload.asp

IE显示的内容如下:
image.png

我们随意选择一个文件,然后单击 【Send File Data To Server】按钮,则Http Server处理POST请求,并返回,IE此时会新弹出一个页面,如下图:
image.png

在Http Server 的POST处理程序内,我们可以获取上传文件的内容,这里我们没有显示相关内容,只是显示了它的大小,如611个字节。

.NET Micro Framework支持的网络功能还很多,如对WCF的支持,有待我们今后细细研究。

 -----------------------------------------------------------------------------------------------------------------------

源码/文档:http://www.sky-walker.com.cn/MFRelease/Sample/YFHttpServer.rar

MF论坛:http://space.cnblogs.com/group/MFSoft/

MF开发板:http://item.taobao.com/item.htm?id=7117999726

网络开发板:http://item.taobao.com/item.htm?id=10919470266

相关文章
|
1月前
|
NoSQL 网络协议 Linux
Redis的实现一:c、c++的网络通信编程技术,先实现server和client的通信
本文介绍了使用C/C++进行网络通信编程的基础知识,包括创建socket、设置套接字选项、绑定地址、监听连接以及循环接受和处理客户端请求的基本步骤。
47 6
|
5天前
|
网络协议 网络安全 网络虚拟化
本文介绍了十个重要的网络技术术语,包括IP地址、子网掩码、域名系统(DNS)、防火墙、虚拟专用网络(VPN)、路由器、交换机、超文本传输协议(HTTP)、传输控制协议/网际协议(TCP/IP)和云计算
本文介绍了十个重要的网络技术术语,包括IP地址、子网掩码、域名系统(DNS)、防火墙、虚拟专用网络(VPN)、路由器、交换机、超文本传输协议(HTTP)、传输控制协议/网际协议(TCP/IP)和云计算。通过这些术语的详细解释,帮助读者更好地理解和应用网络技术,应对数字化时代的挑战和机遇。
29 3
|
5天前
|
消息中间件 监控 数据可视化
基于.NET开源、功能强大且灵活的工作流引擎框架
基于.NET开源、功能强大且灵活的工作流引擎框架
|
16天前
|
网络协议 安全 Go
Go语言进行网络编程可以通过**使用TCP/IP协议栈、并发模型、HTTP协议等**方式
【10月更文挑战第28天】Go语言进行网络编程可以通过**使用TCP/IP协议栈、并发模型、HTTP协议等**方式
44 13
|
8天前
|
运维 物联网 网络虚拟化
网络功能虚拟化(NFV):定义、原理及应用前景
网络功能虚拟化(NFV):定义、原理及应用前景
23 3
|
15天前
|
存储 缓存 网络协议
计算机网络常见面试题(二):浏览器中输入URL返回页面过程、HTTP协议特点,GET、POST的区别,Cookie与Session
计算机网络常见面试题(二):浏览器中输入URL返回页面过程、HTTP协议特点、状态码、报文格式,GET、POST的区别,DNS的解析过程、数字证书、Cookie与Session,对称加密和非对称加密
|
20天前
|
运维 负载均衡 安全
|
4天前
|
XML 开发框架 .NET
.NET 9 中 LINQ 新增功能实操
.NET 9 中 LINQ 新增功能实操
|
5天前
|
网络协议 Unix Linux
精选2款C#/.NET开源且功能强大的网络通信框架
精选2款C#/.NET开源且功能强大的网络通信框架
|
5天前
|
开发框架 JavaScript 前端开发
2024年全面且功能强大的.NET快速开发框架推荐,效率提升利器!
2024年全面且功能强大的.NET快速开发框架推荐,效率提升利器!