vote up 0 vote down star
1

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?

flag

73% accept rate

3 Answers

vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
Thanks! AppWeb sounds good althought the web site is a bit scary. XAMPP is too heavy. – Vincent Sep 30 '08 at 21:50
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.