SimpleHTTPServer refers to the basic HTTP server which can serve requests with files from the file system with a few lines of code. http://docs.python.org/library/simplehttpserver.html
0
votes
1answer
148 views
How to send an html string from a python http web server?
I found a python http web server from http://www.linuxjournal.com/content/tech-tip-really-simple-http-server-python
import sys
import BaseHTTPServer
from SimpleHTTPServer import ...
1
vote
3answers
301 views
Python SimpleHTTPServer
Is there a way to make Python SimpleHTTPServer supports mod_rewrite?
I'm trying things with Ember.js with leveraging History API as the location API, and to make it work, I have to :
1) add some ...
0
votes
1answer
117 views
use html5 video (localhost) with SimpleHTTPServer
I use google io slide deck, and works fine until I added a link to a video. I have a 11MB video file, which I included in the slide as
<video src="video/out/report.mp4" height="600" controls>
...
0
votes
1answer
40 views
CSS not updating on local python httpserver restart
I'm fairly new to the world of web dev and http servers and the like, but I have a basic shell script as follows:
PORT=2600
if [[ $1 =~ ^[0-9]+$ ]]
then PORT=$1
fi
echo "Starting local http ...
1
vote
1answer
58 views
Running Django Framework in SimpleHTTPServer?
Is it possible to set up Python's SimpleHTTPServer to serve Django apps?
2
votes
1answer
493 views
SimpleHTTPServer and SocketServer
I have created a 'handler' python script as follows:
import SimpleHTTPServer
import SocketServer
PORT = 8000
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
httpd = SocketServer.TCPServer(("", ...
-1
votes
1answer
210 views
Python http server uploading multiple files
I'm using the simplehttpwithupload.py script, which I have linked to below, to host a simple http server where people can upload files to me. Is there a way to modify the source code so that multiple ...
1
vote
1answer
83 views
Releasing socket from SocketServer.ForkingTCPServer python
I am creating a ForkingTCPServer to act as a proxy. It handles perfectly fine, but will not release the socket after executing. I have already tried .shutdown() and .server_close() but they just cause ...
2
votes
0answers
172 views
adding POST to the SimpleHTTPServer as proxy
UPDATED
I've made simple proxy based on SimpleHTTPServer but i've got problem with POST method when someone is requesting with POST method it show Error so i've made do_POST() function,but when i ...
2
votes
1answer
173 views
python script to share directory, added to startup via update-rd.c, hangs boot
OK, I searched high and low, and found pieces of my puzzle, but no solutions.
I want to share a directory over http without having to worry about apache, etc. python was the simplest answer. So I got ...
0
votes
2answers
119 views
Executing an asynchronous test in Python
I need to do the following test:
send a GET request to a server (http://remote/...)
wait for the server to send a POST request in response (http://local/...)
parse the POST data and do some ...
4
votes
2answers
284 views
Why does SimpleHTTPServer redirect to ?querystring/ when I request ?querystring?
I like to use Python's SimpleHTTPServer for local development of all kinds of web applications which require loading resources via Ajax calls etc.
When I use query strings in my URLs, the server ...
20
votes
6answers
4k views
Faster alternative to Python's SimpleHTTPServer
Python's SimpleHTTPServer is a great way of serve the contents of the current directory from the command line:
python -m SimpleHTTPServer
However, as far as web servers go, it's very slooooow...
...
0
votes
1answer
121 views
How to make an Android Web Server? [closed]
How do i make an application like kws which allows our handheld device to act as a server. It should be able to handle post request and host a web site. Any idea where I should start?
4
votes
1answer
676 views
Processing Simultaneous/Asynchronous Requests with Python BaseHTTPServer
I've set up a threaded (with Python threads) HTTP server by creating a class that inherits from HTTPServer and ThreadingMixIn:
class ThreadedHTTPServer(ThreadingMixIn, HTTPServer):
pass
I have ...
3
votes
3answers
814 views
How do I shut down a python simpleHTTPserver?
So I'm trying to learn d3, and the wiki suggested that
To view the examples locally, you must have a local web server. Any
web server will work; for example you can run Python's built-in
...
2
votes
1answer
294 views
SimpleHTTPServer - Serving Big Files
i'm using python -m SimpleHTTPServer for a small project. The file index.html references some videos.
<video><source src="big_buck_bunny_480p_stereo.ogg"></video>
This File has a ...
8
votes
3answers
1k views
Can I set a header with python's SimpleHTTPServer?
I'm using SimpleHTTPServer to test some webpages I'm working on. It works great, however I need to do some cross-domain requests. That requires setting a Access-Control-Allow-Origin header with the ...
9
votes
2answers
1k views
Is it possible to run python SimpleHTTPServer on localhost only?
I have a vpn connection and when I'm running python -m SimpleHTTPServer, it serves on 0.0.0.0:8000, which means it can be accessed via localhost and via my real ip.
I don't want robots to scan me and ...
4
votes
1answer
495 views
Having Trouble Getting SimpleHTTPRequestHandler to respond to AJAX
I recently tried implementing the SimpleHTTPRequestHandler to accept AJAX requests according to this.
Although everything seems to work as far as receiving the request from the client, I cannot send ...
1
vote
0answers
175 views
Restlet with HTTPS (JAR missing)
I'm currently trying to run my server through HTTPS protocol but I can't figure out which .JAR file is missing (.JAR included are listed below):
package restlethttps;
import ...
0
votes
1answer
2k views
How to handle TIdHTTPServer with TIdMultiPartFormDataStream
Hi i need help on how to retrieved the parameters and data using IdHttpServer from indy.
many of my application uses TIdMultiPartFormDataStream to send data over the php. I would like to use the ...
1
vote
1answer
164 views
How do I get CGIHTTPServer to ask for user/pass
I just want to start a CGI HTTP Server in Python, that asks for user/pass. How can I do this?
The HTTP Basic authentication (with a browser popup box that asks for name/password) will be fine (and ...
5
votes
2answers
350 views
Prototyping: Simplest HTTP server with URL routing (to use w/ Backbone.Router)?
We're working on a Backbone.js application and the fact that we can start a HTTP server by typing python -m SimpleHTTPServer is brilliant.
We'd like the ability to route any URL (e.g. ...
2
votes
2answers
382 views
How to quiet SimpleHTTPServer?
I have the following simple Threaded fileserver to be used by my application:
class FileServer(Thread):
"""Simple file server exposing the current directory for the thumbnail
creator
"""
...
0
votes
2answers
169 views
How to follow a symbolic link using javascript?
I'm running python -m SimpleHTTPServer 8888 from the directory my_serverand I want to access index.html file that contains a javascript command that reads my_file.csv, but the file is not in ...
4
votes
1answer
1k views
How to host python cgi script with `python -m SimpleHTTPServer 8000` or `python -m CGIHTTPServer 8000`?
When I run python -m SimpleHTTPServer 8000 or python -m CGIHTTPServer 8000 in my shell I am hosting the content of my current directory to the internet.
I would like to make the following ...
2
votes
1answer
1k views
Jersey restful service communication (IncompatibleClassChangeError)
I`ve created a restful service facade based on jersey 1.12 on the JDK 1.6 http server. When I start my application in eclipse everything works fine. I can communicate with the facade without any ...
2
votes
1answer
843 views
REST service with Spring 3 on JDK6 HTTP Server
Is there any possibility to create a REST service with spring 3.0 without an servlet container? Because I don't want to use an application server.
I tried to create REST services with ...
2
votes
2answers
1k views
Simple python server similar to SimpleHTTPServer but with PHP support?
I use python -m SimpleHTTPServer when I want to run my web application locally, quickly and without much pain. However, SimpleHTTPServer lacks any PHP support (or even MySQL support).
Is there ...
2
votes
1answer
388 views
How to use Content-Encoding: gzip with Python SimpleHTTPServer
I'm using python -m SimpleHTTPServer to serve up a directory for local testing in a web browser. Some of the content includes large data files. I would like to be able to gzip them and have ...
2
votes
1answer
976 views
Python SimpleHTTPServer able to register connection attempts?
A Python web server started with
python -m SimpleHTTPServer
will print on the console requests it has accepted. Can I get it to print requests that returned a connection refused to the client?
I am ...
0
votes
2answers
189 views
How can I make HttpServer recognise special characters in Java?
I want to make some SQL query with my Java HttpServer but it seems that the HttpServer doesn't recognize special characters in the link I submit into my browser:
[1]: ...
1
vote
2answers
168 views
serving logs via HTTP [closed]
Here is what i am trying to achieve: I have a few Linux servers that have my web App deployed on. Currently my development team access the web app, run their test cases and then SSH into my Linux ...
1
vote
2answers
460 views
Is it possible to have SimpleHTTPServer serve files from two different directories?
If I do python -m SimpleHTTPServer it serves the files in the current directory.
My directory structure looks like this:
/protected/public
/protected/private
/test
I want to start the server in my ...
0
votes
3answers
219 views
Java, how to read and store file inside the JAR Package
I'm trying to build a simple HTTP Server using Java, using
java.net.ServerSocket = new ServerSocket(this.port, 0, this.ip);
java.net.Socket connection = null;
connection = server.accept();
...
0
votes
2answers
584 views
Only Firefox displays HTML Code and not the page
I have this complicated problem that I can't find a answer to.
I have a Python HTTPServer running that serves webpages. These webpages are created at runtime with help of Beautiful Soup. Problem is ...
1
vote
1answer
946 views
generating a directory listing as webserver index page in linux
I am using
python -m SimpleHTTPServer 8080
to start a webserver from a linux directory. I am trying to write a shell script that generates a index.html page containing the following information :
...
0
votes
0answers
509 views
HTTP::Server::Simple - question
Despite no web-experiences I managed to display the hello-page with this HTTP::Server::Simple-example on my firefox.
Now I was wondering (should I say "Now I am wondering"?) if HTTP::Server::Simple ...
1
vote
3answers
444 views
Why does a background task block the response in SimpleHTTPServer?
I'm writing a simple browser-based front end that should be able to launch a background task and then get progress from it. I want the browser to receive a response saying whether the task launched ...
1
vote
3answers
947 views
Download whole directories in Python SimpleHTTPServer
I really like how I can easily share files on a network using the SimpleHTTPServer, but I wish there was an option like "download entire directory". Is there an easy (one liner) way to implement this?
...
4
votes
1answer
2k views
How do I forward a request to a different url in python
I have been looking for the syntax to redirect a special url to a remote server to do some XSS testing. Any ideas?
import SimpleHTTPServer
import SocketServer
class ...
1
vote
3answers
2k views
BasicHTTPServer, SimpleHTTPServer and concurrency
I'm writing a small web server for testing purposes using python, BasicHTTPServer and SimpleHTTPServer. It looks like it's processing one request at a time. Is there any way to make it a little faster ...
1
vote
4answers
1k views
Is it possible to write dynamic web pages in Python with the Really Simple HTTP Server?
I know that with the SimpleHTTPServer I can make my directories accessible by web-browsers via Internet. So, I run just one line of the code and, as a result, another person working on another ...
3
votes
7answers
1k views
Real time embeddable http server library required
Having looked at several available http server libraries I have not yet found what I am looking for and am sure I can't be the first to have this set of requirements.
I need a library which presents ...
8
votes
4answers
2k views
Using SimpleHTTPServer for unit testing
I'm writing a Python module that wraps out a certain web service API. It's all REST, so relatively straightforward to implement.
However, I found a problem when it comes to unit testing: as I don't ...
4
votes
1answer
1k views
what is the difference between BaseHTTPServer and SimpleHTTPServer? when and where to use it?
What is the difference between BaseHTTPServer and SimpleHTTPServer?
When and where should i use these?
9
votes
2answers
7k views
How can I create an local webserver for my python scripts?
I'm looking to use a local webserver to run a series of python scripts for the user. For various unavoidable reasons, the python script must run locally, not on a server. As a result, I'll be using ...
10
votes
7answers
6k views
Embedded Web Server in Python?
Can you recommend a minimalistic python webserver that I can embedded in my Desktop Application.