4
votes
4answers
252 views
A custom ActionResult for a multi-part http response?
I'd like to respond to an http request with both a txt file and an html page. This way the client can save the file and see a summary of that file's contents via an html page.
Sin …
3
votes
2answers
1k views
Java: Receive a multipart HTTP response
I'm writing a Java client application to receive live M-JPEG video from an IP camera. The video is sent by the camera as an endless multipart HTTP message where each part is a sing …
3
votes
1answer
780 views
Multipart response in Ruby/Rack
I want my server to send a multipart response (multipart/x-mixed-replace). I'd prefer some kind of solution using the Sinatra framework or a generic Rack app, but any example in ru …
2
votes
2answers
141 views
What do the numbers in a multi-part email mean?
I'm looking at the source of a multi-part message from Thunderbird (in hopes of writing my own multi-part message from C++/Javascript)
I was wondering what the follow means (the p …
1
vote
3answers
166 views
Python App Engine uploaded image content-type
I know that I can accept image uploads by having a form that POSTs to App Engine like so:
<form action="/upload_received" enctype="multipart/form-data" method="post">
<di …
1
vote
2answers
65 views
Enumeration hasMoreElements()
I have a JSP/HTML form where there are 2 elements.One is a select dropdown and another is a File upload box(input type="file").I use POST method and enctype as form-multipart.Now I …
1
vote
1answer
71 views
Mail problem with Hungarian characters
Hi, I have a multipart mail which is processed using async read on sockets. The problem is that instead of hungarian diacritics is displayed something like =ED which is the code in …
1
vote
1answer
142 views
Multi-part gzip file random access (in Java)
This may fall in the realm of "not really feasible" or "not really worth the effort" but here goes.
I'm trying to randomly access records stored inside a multi-part gzip file. Spe …
1
vote
4answers
522 views
How to download multiple files with one HTTP request?
Use case: user clicks the link on a webpage - boom! load of files sitting in his folder.
I tried to pack files using multipart/mixed message, but it seems to work only for Firefox
…
1
vote
2answers
627 views
Multipart File Upload in Ruby
I simply want to upload an image to a server with POST. As simple as this task sounds, there seems to be no simple solution in Ruby.
In my application I am using WWW::Mechanize fo …
1
vote
1answer
619 views
Python: Sending Multipart html emails which contain embedded images
I've been playing around with the email module in python but I want to be able to know how to embed images which are included in the html.
So for example if the body is something …
1
vote
1answer
328 views
What should a Multipart HTTP request with multiple files look like?
I'm working on an iPhone app that makes a multipart HTTP request with multiple image files.
It looks like what's happening, on the server side, is that one of the images is getti …
1
vote
2answers
154 views
Can a long file upload be handled by a cluster of (Tomcat) servers where in if one server fails/crashes during the upload, another one picks it up
What happens when Tomcat fails during the upload process. Will it simply throw a 50X error. Is it possible to gracefully handle the server failure and forward the rest of the reque …
0
votes
0answers
23 views
why is downthem all like functionality not built into firefox? [closed]
does firefox downloader implement multi-part downloading? why is such a functionality not built into the browser. what about chrome, ie.
0
votes
1answer
22 views
Separate text and html part from incoming email
Is there a way to separate text and html part when any incoming email is received ? I am using PHP.
If the content-type of the incoming email is multipart/alternative
Mail receiv …
