Webserver example for Nuvoton NuMaker boards and mbed OS 5.15 - HTTP 1.1 and multi-threaded.

Dependencies:   mbed-http

For Mbed OS 6, please use the NuMaker-simple-httpd example.

This application demonstrates how to run an HTTP server on an mbed OS 5 device. It is derived from http-webserver-example Request parsing is done through nodejs/http-parser.

Fixed for Mbed OS 5.15 or later

Tested on

NuMaker IoT-M487 with Ethernet NuMaker PFM-M487 with Ethernet

Committer:
morgandu
Date:
Mon Jun 29 08:17:16 2020 +0000
Revision:
2:ff1a293c4df3
Parent:
0:41f820ea137a
Webserver example for mbed OS 5 - HTTP 1.1 and multi-threaded; Fix for mbed OS 5.15 and clean unnecessary libraries; Add fixed IP address option; Test on Nuvoton NuMaker boards.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jan Jongboom 0:41f820ea137a 1 # mbed-os-example-http-server
Jan Jongboom 0:41f820ea137a 2
morgandu 2:ff1a293c4df3 3 This application demonstrates how to run an HTTP server on an mbed OS 5.15 device.
Jan Jongboom 0:41f820ea137a 4
Jan Jongboom 0:41f820ea137a 5 Request parsing is done through [nodejs/http-parser](https://github.com/nodejs/http-parser).
Jan Jongboom 0:41f820ea137a 6
Jan Jongboom 0:41f820ea137a 7 ## To build
Jan Jongboom 0:41f820ea137a 8
Jan Jongboom 0:41f820ea137a 9 1. Open ``mbed_app.json`` and change the `network-interface` option to your connectivity method ([more info](https://github.com/ARMmbed/easy-connect)).
Jan Jongboom 0:41f820ea137a 10 2. Build the project in the online compiler or using mbed CLI.
Jan Jongboom 0:41f820ea137a 11 3. Flash the project to your development board.
Jan Jongboom 0:41f820ea137a 12 4. Attach a serial monitor to your board to see the debug messages.
Jan Jongboom 0:41f820ea137a 13
Jan Jongboom 0:41f820ea137a 14 ## Tested on
Jan Jongboom 0:41f820ea137a 15
Jan Jongboom 0:41f820ea137a 16 * K64F with Ethernet.
Jan Jongboom 0:41f820ea137a 17 * NUCLEO_F411RE with ESP8266.
Jan Jongboom 0:41f820ea137a 18 * For ESP8266, you need [this patch](https://github.com/ARMmbed/esp8266-driver/pull/41).
morgandu 2:ff1a293c4df3 19
morgandu 2:ff1a293c4df3 20 * NuMaker-IoT-M487 with Ethernet
morgandu 2:ff1a293c4df3 21 * NuMaker-PFM-M487 with Ethernet
Jan Jongboom 0:41f820ea137a 22
Jan Jongboom 0:41f820ea137a 23 But every networking stack that supports the [mbed OS 5 NetworkInterface API](https://docs.mbed.com/docs/mbed-os-api-reference/en/latest/APIs/communication/network_sockets/) should work.