3
votes
3answers
73 views
Handling CGI requests in a bare-bones http server
I am writing a basic http server in C. Handling a simple static .html file is easy but I have no idea how to handle dynamic .pl .cgi file extensions.
I know I will have to use exec() but how is my …
0
votes
1answer
59 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 …
2
votes
3answers
370 views
Embedded HTTP server in Swing Java app
I wish to embed a very light HTTP server in my java swing app which just accepts requests, performs some actions and returns the results.
Is there a very light java class that I can use in my app …
3
votes
2answers
202 views
How to serve any file type with Python’s BaseHTTPRequestHandler.
Consider the following example:
import string,cgi,time
from os import curdir, sep
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
class MyHandler(BaseHTTPRequestHandler):
def …
3
votes
11answers
3k views
How to Build a simple HTTP server in C
I need to build a simple HTTP server in C.
Any guidance? Links? Samples?
Thanks!
5
votes
3answers
396 views
What classes do I use to make an iPhone act as a server?
I'm looking for an easy way for users to download content from an iPhone to their computer. I've seen other apps that actually turn the iPhone into a server and give the user an IP address to …
1
vote
4answers
239 views
How do I create an HTTP server in Python using the first available port?
I want to avoid hardcoding the port number as in the following:
httpd = make_server('', 8000, simple_app)
The reason I'm creating the server this way is that I want to use it as a 'kernel' for an …
1
vote
1answer
174 views
What is the preferred way to serve web applications written in Lisp?
I've been researching modules for Nginx (my preferred webserver) to serve a Lisp webapp, but I haven't been able to find anything.
Is there modules for Nginx, or is there better ways to serve Lisp …
1
vote
4answers
146 views
Can you compile Apache HTTP Server and redeploy its binaries to a different location ?
As part of our product release we ship Apache HTTP Server binaries that we have compiled on our (UNIX) development machine.
We tell our clients to install the binaries (on their UNIX servers) under …
