Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
7answers
3k views

Embedded Web Server in Python?

Can you recommend a minimalistic python webserver that I can embedded in my Desktop Application.
5
votes
3answers
757 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 ...
3
votes
6answers
712 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 ...
2
votes
1answer
677 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?
1
vote
2answers
81 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
44 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 ...
1
vote
1answer
80 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 : ...
1
vote
2answers
202 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
2answers
602 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? ...
1
vote
2answers
650 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
2answers
2k 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 ...
0
votes
2answers
35 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]: ...
0
votes
3answers
56 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
83 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 ...
0
votes
0answers
33 views

how to fetch ip address of the client browser accesing iphone http server on iphone?

i am in between my application and stuck in a module in which i have to fetch the ip address of the client browser so that it can bee seen on the iphone screen and the user may decide whether access ...
0
votes
0answers
148 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 ...
0
votes
3answers
660 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 ...
0
votes
4answers
428 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 ...