Open Source & Free  

On Device Web Server

On Device Web Server

Header Image

I try to write about every new feature or capability we introduce but this isn’t always possible. Tasks sometimes weigh me down and as they do so I sometimes find something that I totally neglected as it was released. Such is the case with the CN1Webserver library which we launched over 6 months ago.

It got lost and in fact it came out during such a busy period I completely forgot about it.

This cn1lib lets you create a simple web server on the device. You can then connect to this server either from the device itself (the more common use case) or remotely.

This sounds insane but it’s a surprisingly common trick used by developers to get around odd device limitations. I first ran into this use case around 2010. Back then a company I was consulting for needed a way to process media files before playback (to apply DRM). This was impossible in Android at the time and it’s still challenging. Their solution was genius and trivial: they implemented a webserver on the device.

This way they could download and decode the file locally, then playback from a local URL on the device itself. The devices media API was oblivious to the fact that DRM was used in playback.

There are quite a few additional cases such as the ability to embed HTML/JS code that needs server interaction in order to work. For most of us this feature is pretty niche but the fact that you can accomplish it with a simple plugin is huge.

You can install the cn1lib like you can any other cn1lib from the Extension Manager. You will need additional setup so it will work correctly on the devices as explained in the github project.

7 Comments

  • Francesco Galgani says:

    When I think to a server, I have in mind Apache, Tomcat, IIS… Which type of content and code can be used in that CN1 server? Only static content of html/js?

  • Shai Almog says:

    You can dynamically generate files to the file system where this server will serve them. I think it should be pretty easy to create a servlet like API to serve truly dynamic content through this API though.

  • Carlos says:

    Could this server accept post operations, so binary files could be remotely submitted to the device?

  • Shai Almog says:

    I don’t think so. A device can be hidden behind a NAT so even if you enable it this would be problematic to implement.

  • Carlos says:

    I’m thinking I just need sending files within the local network, so the NAT wouldn’t be a problem. What I want to do is sending files from a desktop java app to a CN1 app. What would be the best way to achieve that? I was thinking websockets, but the files could be quite large, so I’m not sure that is a good choice…

  • Shai Almog says:

    I would use the cloud as a middle tier for most cases as it makes things simpler. However, if you don’t want that I’d use a server on the desktop which ideally supports websockets. Then use the websockets to push an event to the connected client. Based on such an event I’d trigger a download from the client.

    This would save battery life. You can also use push notification instead of websockets to further save on battery life and send the event even when the app is in the background with visual notification to the user.

  • Carlos says:

    Great, thank you. I’ll try these solutions and see which one fits best for my needs.

Leave a Reply