Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedded Web Server in .NET

I would like to embed a light weight web server in a Windows application developed in .NET. The web server has to support PHP.

I have looked at Cassini, but it seems it is ASP.NET only.

like image 607
Vincent Avatar asked Sep 30 '08 21:09

Vincent


2 Answers

The .net class HttpListener exposes the underlying http.sys upon which IIS is built. All machines since Windows XP2 have http.sys installed by default. Here are some links to get you started.

XML-RPC SERVER USING HTTPLISTENER

HttpListener For Dummies

As for the PHP support, I don't know how you would enable this, but there is no technical reason you couldn't build it in.

like image 63
Darrel Miller Avatar answered Oct 28 '22 08:10

Darrel Miller


I would look at the likes of XAMPP Lite which you could easily start up and shutdown with your application.

There is also AppWeb which claims to be exactly what you are looking for.

like image 29
Geoff Avatar answered Oct 28 '22 07:10

Geoff