Tagged Questions
3
votes
5answers
565 views
How do I write an HTTP server in C#?
Can someone tell me how to create an HTTP server in C# under the .NET Framework?
I have to write my own HTTP server. I do not have IIS. I want a client to be able to access my created HTTP server, ...
1
vote
1answer
572 views
Open Source .NET embedded web/http server
I am working on a project where I need to embed a web server into my C# application so the application could display it's status via HTTP. I suppose I'll want to configure it through the http also.
...
0
votes
1answer
445 views
Pass POST variables to PHP executable
I have been writing an HTTP server in C#, and I've gotten to the point where I want to implement PHP. However, I cannot seem to find a way to pass POST variables to the PHP-CGI executable. I know that ...