Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
2k views

Using Twisted's twisted.web classes, how do I flush my outgoing buffers?

I've made a simple http server using Twisted, which sends the Content-Type: multipart/x-mixed-replace header. I'm using this to test an http client which I want to set up to accept a long-term stream. ...
2
votes
3answers
2k views

Does multipart/x-mixed-replace wait for client requests?

I'm trying to figure out if it's possible to slow down the server when it's sending multipart/xmixed-replace responses. I want my client to try to rate limit a motion jpeg stream. I've found a lot ...
1
vote
1answer
158 views

Twisted: notify client when server-side process completes

I'm using Twisted to write a web server. One of the tasks that this server performs takes a long time (~5 minutes). I would like to be able to efficiently notify the client that this task has ...
1
vote
0answers
665 views

NSURLConnection didReceiveResponse not recognizing multiple MIME types

I am working on a webcam viewer, for these cams: http://www.canvision.net/support/pt300-cgi/GetData.htm the data arrives like this: HTTP/1.0 200 OK Date: Wed, 19 Feb 2003 03:40:16 GMT Server: WYM/1.0 ...
1
vote
6answers
4k views

streaming binary data over http

I am looking into streaming binary data into a browser (through http). I am looking for opinions as to good ways to go about doing this. Ultimately I will have a real time data source and I would like ...
0
votes
0answers
210 views

Multi part flush does not seem to work properly with Servlet 3 (Tomcat 7). The entire data is dumped at once at the browser

We are trying to send a multi part response to the client for a request - and what we see is that (via firebug), that the browser is getting the 200 OKs and not the data sent via the multi part ...