0
votes
1answer
121 views

CherryPy forwarding request to another server

I'm having the same issue as this SO question, but with nginx and CherryPy. I am trying to allow clients to access 192.168.0.4:80/otherpath through GET requests made to 192.168.0.3:80/forward, where ...
0
votes
2answers
93 views

Is it possible to prevent large files being uploaded to a server by specifying a maximum request body size?

I have a server in cherrpy where I want to prevent large files from being uploaded. To prevent this I specify a maximum request body size. However, I am not really sure if this prevents large files ...
0
votes
2answers
189 views

starting cherrypy properly

How do I properly start cherrypy? It worked for me with 3.0 but now I can serve the content but have to start my service everytime I touch the source even though the autoreloader is running. I ...
2
votes
1answer
108 views

Using cherrypy for HTTP and HTTPS

I set up an http(s) upload server using cherrypy for uploading something with a blackberry application. I use this code to send data to the server but I always get a bad request (400) error. It gives ...
0
votes
0answers
161 views

Python: sending and receiving large files over POST using cherrypy

I have a cherrypy web server that needs to be able to receive large files over http post. I have something working at the moment, but it fails once the files being sent gets too big (around 200mb). ...
0
votes
2answers
125 views

How to get username with CherryPy digest authentication

I have a CherryPy application running successfully using the built-in digest authentication tool and no session support. Now, I would like to expose additional features to certain users. Is it ...
0
votes
0answers
182 views

Python and MySQLdb slow execute and fetchall

I have a problem with Python and MySQL, Im using MySQLdb 1.2.3 which I installed with a windows msi file and Python 2.7.3 on Windows 7 SP1 x64. I have quite a big python file and Im making a website ...
3
votes
1answer
399 views

HTTPS to HTTP using CherryPy

Is it possible for CherryPy to redirect HTTP to HTTPS. Lets for example say the code below is http://example.com if someone visits via https://example.com I want them to be redirected to the plain ...
0
votes
0answers
126 views

using cherrypy built-in http server to server map tiles (locally) [closed]

I'm using cherrypy to serve map tiles (256x256 .png files) to a browser running OpenLayers on the same machine. The cherrypy server uses a simple URL scheme for knowing which tile to serve in response ...
2
votes
3answers
1k views

HTTP Vs Vanilla sockets for uploading large binary file (50-200 MB) from Android device over a single hop Wi-Fi Network

Is there a substantial overhead of using HTTP over plain sockets (Java on Android) to send a large (50-200 MB) file [file is on the SD card] from an Android device to a Linux server over a Wi-Fi ...
0
votes
0answers
83 views

HTTP traffic viewer for CherryPy and GAE

I have a Google App Engine app that talks to another Google App Engine app, both use CherryPy. Is there a way to see the HTTP traffic between them? The intended use is as a debugging tool. Charles ...
1
vote
1answer
617 views

DELETE request from jQuery to CherryPy not sending parameters

For some reason when I make a DELETE HTTP request from jQuery (1.4.4) to a CherryPy server (3.1.2), no parameters are being sent. POST, GET and PUT requests are sending parameters just fine. Here's ...
1
vote
2answers
562 views

How to determine if CherryPy is caching responses?

Is it possible that CherryPy, in its default configuration, is caching the responses to one or more of my request handlers? And, if so, how do I turn that off?
3
votes
4answers
3k views

How to return an image in an HTTP response with CherryPy

I have code which generates a Cairo ImageSurface, and I expose it like so: def preview(...): surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, width, height) ... ...