nanoFramework.WebServer 1.0.0-preview.240

Prefix Reserved
This is a prerelease version of nanoFramework.WebServer.
There is a newer version of this package available.
See the version list below for details.
dotnet add package nanoFramework.WebServer --version 1.0.0-preview.240                
NuGet\Install-Package nanoFramework.WebServer -Version 1.0.0-preview.240                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.WebServer" Version="1.0.0-preview.240" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.WebServer --version 1.0.0-preview.240                
#r "nuget: nanoFramework.WebServer, 1.0.0-preview.240"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install nanoFramework.WebServer as a Cake Addin
#addin nuget:?package=nanoFramework.WebServer&version=1.0.0-preview.240&prerelease

// Install nanoFramework.WebServer as a Cake Tool
#tool nuget:?package=nanoFramework.WebServer&version=1.0.0-preview.240&prerelease                

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


Welcome to the .NET nanoFramework WebServer repository

Build status

Component Build Status NuGet Package
nanoFramework.WebServer Build Status NuGet
nanoFramework.WebServer (preview) Build Status NuGet

.NET nanoFramework WebServer

This library was coded by Laurent Ellerbach who generously offered it to the .NET nanoFramework project.

This is a simple nanoFramework WebServer. Features:

  • Handle multi-thread requests
  • Serve static files on any storage
  • Handle parameter in URL
  • Possible to have multiple WebServer running at the same time
  • supports GET/PUT and any other word
  • Supports any type of header
  • Supports content in POST
  • Reflection for easy usage of controllers and notion of routes
  • Helpers to return error code directly facilitating REST API
  • HTTPS support
  • URL decode/encode

Limitations:

  • Does not support any zip in the request or response stream

Usage

You just need to specify a port and a timeout for the queries and add an event handler when a request is incoming. With this first way, you will have an event raised every time you'll receive a request.

using (WebServer server = new WebServer(80, HttpProtocol.Http)
{
    // Add a handler for commands that are received by the server.
    server.CommandReceived += ServerCommandReceived;

    // Start the server.
    server.Start();

    Thread.Sleep(Timeout.Infinite);
}

You can as well pass a controller where you can use decoration for the routes and method supported.

using (WebServer server = new WebServer(80, HttpProtocol.Http, new Type[] { typeof(ControllerPerson), typeof(ControllerTest) }))
{
    // Start the server.
    server.Start();

    Thread.Sleep(Timeout.Infinite);
}

In this case, you're passing 2 classes where you have public methods decorated which will be called every time the route is found.

With the previous example, a very simple and straight forward Test controller will look like that:

public class ControllerTest
{
    [Route("test"), Route("Test2"), Route("tEst42"), Route("TEST")]
    [CaseSensitive]
    [Method("GET")]
    public void RoutePostTest(WebServerEventArgs e)
    {
        string route = $"The route asked is {e.Context.Request.RawUrl.TrimStart('/').Split('/')[0]}";
        e.Context.Response.ContentType = "text/plain";
        WebServer.OutPutStream(e.Context.Response, route);
    }

    [Route("test/any")]
    public void RouteAnyTest(WebServerEventArgs e)
    {
        WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.OK);
    }
}

In this example, the RoutePostTest will be called every time the called url will be test or Test2 or tEst42 or TEST, the url can be with parameters and the method GET. Be aware that Test won't call the function, neither test/.

The RouteAnyTestis called whenever the url is test/any whatever the method is.

There is a more advance example with simple REST API to get a list of Person and add a Person. Check it in the sample.

Important

  • By default the routes are not case sensitive and the attribute must be lowercase
  • If you want to use case sensitive routes like in the previous example, use the attribute CaseSensitive. As in the previous example, you must write the route as you want it to be responded to.

A simple GPIO controller REST API

You will find in simple GPIO controller sample REST API. The controller not case sensitive and is working like this:

  • To open the pin 2 as output: http://yoururl/open/2/output
  • To open pin 4 as input: http://yoururl/open/4/input
  • To write the value high to pin 2: http://yoururl/write/2/high
    • You can use high or 1, it has the same effect and will place the pin in high value
    • You can use low of 0, it has the same effect and will place the pin in low value
  • To read the pin 4: http://yoururl/read/4, you will get as a raw text highor lowdepending on the state

Authentication on controllers

Controllers support authentication. 3 types of authentications are currently implemented on controllers only:

  • Basic: the classic user and password following the HTTP standard. Usage:
    • [Authentication("Basic")] will use the default credential of the webserver
    • [Authentication("Basic:myuser mypassword")] will use myuser as a user and my password as a password. Note: the user cannot contains spaces.
  • APiKey in header: add ApiKey in headers with the API key. Usage:
    • [Authentication("ApiKey")] will use the default credential of the webserver
    • [Authentication("ApiKeyc:akey")] will use akey as ApiKey.
  • None: no authentication required. Usage:
    • [Authentication("None")] will use the default credential of the webserver

The Authentication attribute applies to both public Classes an public Methods.

As for the rest of the controller, you can add attributes to define them, override them. The following example gives an idea of what can be done:

[Authentication("Basic")]
class ControllerAuth
{
    [Route("authbasic")]
    public void Basic(WebServerEventArgs e)
    {
        WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.OK);
    }

    [Route("authbasicspecial")]
    [Authentication("Basic:user2 password")]
    public void Special(WebServerEventArgs e)
    {
        WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.OK);
    }

    [Authentication("ApiKey:superKey1234")]
    [Route("authapi")]
    public void Key(WebServerEventArgs e)
    {
        WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.OK);
    }

    [Route("authnone")]
    [Authentication("None")]
    public void None(WebServerEventArgs e)
    {
        WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.OK);
    }

    [Authentication("ApiKey")]
    [Route("authdefaultapi")]
    public void DefaultApi(WebServerEventArgs e)
    {
        WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.OK);
    }
}

And you can pass default credentials to the server:

using (WebServer server = new WebServer(80, HttpProtocol.Http, new Type[] { typeof(ControllerPerson), typeof(ControllerTest), typeof(ControllerAuth) }))
{
    // To test authentication with various scenarios
    server.ApiKey = "ATopSecretAPIKey1234";
    server.Credential = new NetworkCredential("topuser", "topPassword");

    // Start the server.
    server.Start();

    Thread.Sleep(Timeout.Infinite);
}

With the previous example the following happens:

  • All the controller by default, even when nothing is specified will use the controller credentials. In our case, the Basic authentication with the default user (topuser) and password (topPassword) will be used.
    • When calling http://yoururl/authbasic from a browser, you will be prompted for the user and password, use the default one topuser and topPassword to get access
    • When calling http://yoururl/authnone, you won't be prompted because the authentication has been overridden for no authentication
    • When calling http://yoururl/authbasicspecial, the user and password are different from the defautl ones, user2 and password is the right couple here
  • If you would have define in the controller a specific user and password like [Authentication("Basic:myuser mypassword")], then the default one for all the controller would have been myuser and mypassword
  • When calling http://yoururl/authapi, you must pass the header ApiKey (case sensitive) with the value superKey1234 to get authorized, this is overridden the default Basic authentication
  • When calling http://yoururl/authdefaultapi, the default key ATopSecretAPIKey1234 will be used so you have to pass it in the headers of the request

All up, this is an example to show how to use authentication, it's been defined to allow flexibility.

Managing incoming queries thru events

Very basic usage is the following:

private static void ServerCommandReceived(object source, WebServerEventArgs e)
{
    var url = e.Context.Request.RawUrl;
    Debug.WriteLine($"Command received: {url}, Method: {e.Context.Request.HttpMethod}");

    if (url.ToLower() == "/sayhello")
    {
        // This is simple raw text returned
        WebServer.OutPutStream(e.Context.Response, "It's working, url is empty, this is just raw text, /sayhello is just returning a raw text");
    }
    else
    {
        WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.NotFound);
    }
}

You can do more advance scenario like returning a full HTML page:

WebServer.OutPutStream(e.Context.Response, "<html><head>" +
    "<title>Hi from nanoFramework Server</title></head><body>You want me to say hello in a real HTML page!<br/><a href='/useinternal'>Generate an internal text.txt file</a><br />" +
    "<a href='/Text.txt'>Download the Text.txt file</a><br>" +
    "Try this url with parameters: <a href='/param.htm?param1=42&second=24&NAme=Ellerbach'>/param.htm?param1=42&second=24&NAme=Ellerbach</a></body></html>");

And can get parameters from a URL a an example from the previous link on the param.html page:

if (url.ToLower().IndexOf("/param.htm") == 0)
{
    // Test with parameters
    var parameters = WebServer.decryptParam(url);
    string toOutput = "<html><head>" +
        "<title>Hi from nanoFramework Server</title></head><body>Here are the parameters of this URL: <br />";
    foreach (var par in parameters)
    {
        toOutput += $"Parameter name: {par.Name}, Value: {par.Value}<br />";
    }
    toOutput += "</body></html>";
    WebServer.OutPutStream(e.Context.Response, toOutput);
}

And server static files:

var files = storage.GetFiles();
foreach (var file in files)
{
    if (file.Name == url)
    {
        WebServer.SendFileOverHTTP(e.Context.Response, file);
        return;
    }
}

WebServer.OutputHttpCode(e.Context.Response, HttpStatusCode.NotFound);

And also REST API is supported, here is a comprehensive example:

if (url.ToLower().IndexOf("/api/") == 0)
{
    string ret = $"Your request type is: {e.Context.Request.HttpMethod}\r\n";
    ret += $"The request URL is: {e.Context.Request.RawUrl}\r\n";
    var parameters = WebServer.DecodeParam(e.Context.Request.RawUrl);
    if (parameters != null)
    {
        ret += "List of url parameters:\r\n";
        foreach (var param in parameters)
        {
            ret += $"  Parameter name: {param.Name}, value: {param.Value}\r\n";
        }
    }

    if (e.Context.Request.Headers != null)
    {
        ret += $"Number of headers: {e.Context.Request.Headers.Count}\r\n";
    }
    else
    {
        ret += "There is no header in this request\r\n";
    }

    foreach (var head in e.Context.Request.Headers?.AllKeys)
    {
        ret += $"  Header name: {head}, Values:";
        var vals = e.Context.Request.Headers.GetValues(head);
        foreach (var val in vals)
        {
            ret += $"{val} ";
        }

        ret += "\r\n";
    }

    if (e.Context.Request.ContentLength64 > 0)
    {

        ret += $"Size of content: {e.Context.Request.ContentLength64}\r\n";
        byte[] buff = new byte[e.Context.Request.ContentLength64];
        e.Context.Request.InputStream.Read(buff, 0, buff.Length);
        ret += $"Hex string representation:\r\n";
        for (int i = 0; i < buff.Length; i++)
        {
            ret += buff[i].ToString("X") + " ";
        }

    }

    WebServer.OutPutStream(e.Context.Response, ret);
}

This API example is basic but as you get the method, you can choose what to do.

As you get the url, you can check for a specific controller called. And you have the parameters and the content payload!

Example of a result with call:

result

And more! Check the complete example for more about this WebServer!

Using HTTPS

You will need to generate a certificate and keys:

X509Certificate _myWebServerCertificate509 = new X509Certificate2(_myWebServerCrt, _myWebServerPrivateKey, "1234");

// X509 RSA key PEM format 2048 bytes
        // generate with openssl:
        // > openssl req -newkey rsa:2048 -nodes -keyout selfcert.key -x509 -days 365 -out selfcert.crt
        // and paste selfcert.crt content below:
        private const string _myWebServerCrt =
@"-----BEGIN CERTIFICATE-----
MORETEXT
-----END CERTIFICATE-----";

        // this one is generated with the command below. We need a password.
        // > openssl rsa -des3 -in selfcert.key -out selfcertenc.key
        // the one below was encoded with '1234' as the password.
        private const string _myWebServerPrivateKey =
@"-----BEGIN RSA PRIVATE KEY-----
MORETEXTANDENCRYPTED
-----END RSA PRIVATE KEY-----";

using (WebServer server = new WebServer(443, HttpProtocol.Https)
{
    // Add a handler for commands that are received by the server.
    server.CommandReceived += ServerCommandReceived;
    server.HttpsCert = _myWebServerCertificate509;

    server.SslProtocols = System.Net.Security.SslProtocols.Tls | System.Net.Security.SslProtocols.Tls11 | System.Net.Security.SslProtocols.Tls12;
    // Start the server.
    server.Start();

    Thread.Sleep(Timeout.Infinite);
}

IMPORTANT: because the certificate above is not issued from a Certificate Authority it won't be recognized as a valid certificate. If you want to access the nanoFramework device with your browser, for example, you'll have to add the (CRT file)[WebServer.Sample\webserver-cert.crt] as a trusted one. On Windows, you just have to double click on the CRT file and then click "Install Certificate...".

You can of course use the routes as defined earlier. Both will work, event or route with the notion of controller.

Feedback and documentation

For documentation, providing feedback, issues and finding out how to contribute please refer to the Home repo.

Join our Discord community here.

Credits

The list of contributors to this project can be found at CONTRIBUTORS.

License

The nanoFramework WebServer library is licensed under the MIT license.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on nanoFramework.WebServer:

Repository Stars
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last updated
1.2.60 132 9/26/2024
1.2.56 224 7/30/2024
1.2.55 142 7/24/2024
1.2.52 258 6/3/2024
1.2.48 165 5/17/2024
1.2.45 105 5/13/2024
1.2.43 137 5/10/2024
1.2.40 230 4/12/2024
1.2.38 124 4/9/2024
1.2.36 111 4/8/2024
1.2.34 128 4/5/2024
1.2.32 121 4/3/2024
1.2.30 108 4/3/2024
1.2.27 337 2/14/2024
1.2.25 120 2/12/2024
1.2.23 211 1/26/2024
1.2.21 103 1/26/2024
1.2.19 102 1/26/2024
1.2.17 140 1/24/2024
1.2.14 441 11/17/2023
1.2.12 150 11/10/2023
1.2.9 142 11/9/2023
1.2.7 159 11/8/2023
1.2.6 123 11/8/2023
1.2.3 246 10/27/2023
1.2.1 159 10/25/2023
1.1.79 209 10/10/2023
1.1.77 197 10/4/2023
1.1.75 418 8/8/2023
1.1.73 249 7/27/2023
1.1.71 145 7/27/2023
1.1.65 670 2/17/2023
1.1.63 375 1/24/2023
1.1.61 280 1/24/2023
1.1.59 313 1/24/2023
1.1.56 404 12/30/2022
1.1.54 319 12/28/2022
1.1.51 332 12/27/2022
1.1.47 706 10/26/2022
1.1.44 381 10/25/2022
1.1.41 378 10/24/2022
1.1.39 422 10/23/2022
1.1.36 425 10/10/2022
1.1.32 416 10/8/2022
1.1.29 462 9/22/2022
1.1.27 436 9/22/2022
1.1.25 448 9/22/2022
1.1.23 502 9/16/2022
1.1.21 478 9/15/2022
1.1.19 517 8/29/2022
1.1.17 541 8/6/2022
1.1.14 438 8/4/2022
1.1.12 405 8/3/2022
1.1.10 437 8/3/2022
1.1.8 409 8/3/2022
1.1.6 605 6/13/2022
1.1.4 473 6/8/2022
1.1.2 427 6/8/2022
1.1.1 472 5/30/2022
1.0.0 693 3/30/2022
1.0.0-preview.260 142 3/29/2022
1.0.0-preview.258 126 3/28/2022
1.0.0-preview.256 126 3/28/2022
1.0.0-preview.254 132 3/28/2022
1.0.0-preview.252 119 3/28/2022
1.0.0-preview.250 127 3/28/2022
1.0.0-preview.248 149 3/17/2022
1.0.0-preview.246 132 3/14/2022
1.0.0-preview.244 131 3/14/2022
1.0.0-preview.242 125 3/14/2022
1.0.0-preview.240 129 3/14/2022
1.0.0-preview.238 132 3/8/2022
1.0.0-preview.236 131 3/8/2022
1.0.0-preview.234 121 3/4/2022
1.0.0-preview.232 118 3/3/2022
1.0.0-preview.230 130 3/2/2022
1.0.0-preview.228 128 2/28/2022
1.0.0-preview.226 160 2/24/2022
1.0.0-preview.222 138 2/17/2022
1.0.0-preview.220 134 2/17/2022
1.0.0-preview.218 166 2/6/2022
1.0.0-preview.216 125 2/4/2022
1.0.0-preview.214 144 2/4/2022
1.0.0-preview.212 152 1/28/2022
1.0.0-preview.210 145 1/28/2022
1.0.0-preview.208 147 1/28/2022
1.0.0-preview.206 137 1/25/2022
1.0.0-preview.204 134 1/21/2022
1.0.0-preview.202 127 1/21/2022
1.0.0-preview.200 134 1/21/2022
1.0.0-preview.198 134 1/21/2022
1.0.0-preview.196 136 1/21/2022
1.0.0-preview.194 152 1/13/2022
1.0.0-preview.192 149 1/12/2022
1.0.0-preview.190 138 1/12/2022
1.0.0-preview.188 132 1/11/2022
1.0.0-preview.186 141 1/11/2022
1.0.0-preview.183 151 1/6/2022
1.0.0-preview.181 140 1/5/2022
1.0.0-preview.180 147 1/3/2022
1.0.0-preview.179 138 1/3/2022
1.0.0-preview.178 143 1/3/2022
1.0.0-preview.177 140 12/30/2021
1.0.0-preview.176 150 12/28/2021
1.0.0-preview.174 184 12/3/2021
1.0.0-preview.172 156 12/3/2021
1.0.0-preview.170 145 12/3/2021
1.0.0-preview.168 146 12/3/2021
1.0.0-preview.166 146 12/3/2021
1.0.0-preview.164 149 12/2/2021
1.0.0-preview.162 148 12/2/2021
1.0.0-preview.160 145 12/2/2021
1.0.0-preview.158 145 12/2/2021
1.0.0-preview.156 148 12/2/2021
1.0.0-preview.154 143 12/2/2021
1.0.0-preview.152 153 12/1/2021
1.0.0-preview.150 140 12/1/2021
1.0.0-preview.148 156 12/1/2021
1.0.0-preview.145 195 11/11/2021
1.0.0-preview.143 190 10/22/2021
1.0.0-preview.141 177 10/18/2021
1.0.0-preview.138 199 10/18/2021
1.0.0-preview.136 284 7/17/2021
1.0.0-preview.134 157 7/16/2021
1.0.0-preview.132 162 7/16/2021
1.0.0-preview.130 175 7/15/2021
1.0.0-preview.128 177 7/14/2021
1.0.0-preview.126 268 6/19/2021
1.0.0-preview.124 258 6/19/2021
1.0.0-preview.122 167 6/17/2021
1.0.0-preview.119 167 6/7/2021
1.0.0-preview.117 155 6/7/2021
1.0.0-preview.115 195 6/7/2021
1.0.0-preview.113 194 6/7/2021
1.0.0-preview.111 209 6/6/2021
1.0.0-preview.109 906 6/5/2021
1.0.0-preview.107 169 6/3/2021
1.0.0-preview.105 157 6/2/2021
1.0.0-preview.103 159 6/2/2021
1.0.0-preview.101 170 6/1/2021
1.0.0-preview.99 187 6/1/2021
1.0.0-preview.96 185 6/1/2021
1.0.0-preview.94 193 5/31/2021
1.0.0-preview.92 200 5/30/2021
1.0.0-preview.90 173 5/27/2021
1.0.0-preview.88 172 5/26/2021
1.0.0-preview.86 283 5/23/2021
1.0.0-preview.84 189 5/22/2021
1.0.0-preview.82 226 5/21/2021
1.0.0-preview.80 179 5/19/2021
1.0.0-preview.78 166 5/19/2021
1.0.0-preview.76 189 5/19/2021
1.0.0-preview.71 172 5/15/2021
1.0.0-preview.69 145 5/14/2021
1.0.0-preview.66 177 5/13/2021
1.0.0-preview.64 183 5/11/2021
1.0.0-preview.62 172 5/11/2021
1.0.0-preview.59 228 5/6/2021
1.0.0-preview.57 154 5/5/2021
1.0.0-preview.51 177 4/12/2021
1.0.0-preview.49 172 4/12/2021
1.0.0-preview.47 184 4/10/2021
1.0.0-preview.44 182 4/6/2021
1.0.0-preview.41 162 4/5/2021
1.0.0-preview.32 198 3/21/2021
1.0.0-preview.30 217 3/20/2021
1.0.0-preview.28 204 3/19/2021
1.0.0-preview.26 191 3/18/2021
1.0.0-preview.24 153 3/17/2021
1.0.0-preview.22 164 3/17/2021
1.0.0-preview.20 194 3/5/2021
1.0.0-preview.18 163 3/2/2021
1.0.0-preview.15 409 1/19/2021
1.0.0-preview.13 177 1/19/2021
1.0.0-preview.11 234 1/7/2021
1.0.0-preview.10 197 12/22/2020
1.0.0-preview.6 263 12/1/2020
1.0.0-preview.3 266 11/6/2020