views:

690

answers:

3

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.

Any idea?

+2  A: 

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.

Darrel Miller
+1  A: 

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.

Geoff
Thanks! AppWeb sounds good althought the web site is a bit scary. XAMPP is too heavy.
Vincent
+1  A: 

You can always use PHP as a CGI application. CGI is well documented, and AFAIK pretty easy to implement. Use Darrel Millers suggestion, and couple it with some CGI magick, and you should be cooking with gas.

Jonathan Arkell