Tagged Questions
The multipart tag has no wiki summary.
13
votes
4answers
2k views
Is there a lightweight multipart/form-data parser in C or C++?
I'm looking at integrating multipart form-data parsing in a web server module so that I can relieve backend web applications (often written in dynamic languages) from parsing the multipart data ...
11
votes
2answers
3k views
Python standard library to POST multipart/form-data encoded data
I would like to POST multipart/form-data encoded data.
I have found an external module that does it: http://atlee.ca/software/poster/index.html
however I would rather avoid this dependency. Is there ...
10
votes
2answers
5k views
Node.js appears to be missing the multipart module
I am trying to parse form data, including upload files with a node.js http server. All of the tutorial type articles I have found use a require("multipart"); to include the multipart module, but when ...
8
votes
1answer
1k views
Android Multipart Upload
As part of my Android app, I'd like to upload bitmaps to be remotely stored. I have simple HTTP GET and POST communication working perfectly, but documentation on how to do a multipart POST seems to ...
8
votes
4answers
2k views
Browser support of multipart responses
I would like to create a HTTP response, using multipart/mixed, but I'm not sure which browsers support it; and if it's as convenient as it sounds, from the client's point of view.
To be honest, I do ...
7
votes
4answers
15k views
How can I make a multipart/form-data POST request using Java?
In the days of version 3.x of Apache Commons HttpClient, making a multipart/form-data POST request was possible (an example from 2004). Unfortunately this is no longer possible in version 4.0 of ...
6
votes
3answers
2k views
Generating multipart boundary
I'm writing a script that uploads a file to a cgi script that expects a multipart request, such as a form on a HTML page. The boundary is a unique token that annotates the file contents in the request ...
6
votes
3answers
5k 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 single JPEG frame. I ...
5
votes
2answers
927 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. Specifically, the files ...
5
votes
1answer
4k 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 like
<img ...
4
votes
1answer
199 views
URLRewrite filter not working with multipart form
I am using tuckey URLRewrite filter having one of its rules as follows:
<rule>
<name> Proxy URL with jession ID's </name>
<note>
</note>
<condition ...
4
votes
2answers
477 views
Help improve my file upload method (Pyramid framework)
Currently, I am using the following method for uploading files (via HTML form) in Pyramid.
if request.params.get('form.submitted'):
upload_directory = os.getcwd() + '/myapp/static/uploads/'
...
4
votes
2answers
308 views
Is there a java utility to produce http multi-part responses?
I am building a web-service that returns a multipart response. I know the format for constructing a multi-part response; and I will build my own tools if I can't find existing tools.
Perhaps I ...
4
votes
4answers
840 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.
Since the file is ...
4
votes
1answer
3k 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 getting parsed properly, ...
3
votes
2answers
32 views
Is there any downside in setting a form to multipart in HTML?
I'm dynamically building forms and at the time I output the form tag I'm not sure if the form will or will not have a file field. Is there any downside to always making these forms multipart? Why ...
3
votes
1answer
194 views
How can I read the content of the content-disposition header?
TEMPORARY SOLVED: InputStream closed in Apache FileUpload API
I want to read the content of the content-disposition header but request.getHeader ("content-disposition") always return null and ...
3
votes
1answer
70 views
Regex for filename with quotes in multipart
I'm trying to parse a multipart/form-data request properly, it works unless the file that is beeing uploaded contains double quotes.
The request looks like (excerpt from wireshark):
...
3
votes
1answer
202 views
Qt and Multipart HTTP
I have a Qt app that needs to use a multi-part http request. From looking around on the net I see that multi part requests are being added to Qt4.8 but that is of no use to me now. I really need the ...
3
votes
2answers
8k views
Making an HTTP POST call with multipart/form-data using jQuery?
I'm trying to make a HTTP POST call with multipart/form-data , using jQuery:
$.ajax({
url: 'http://localhost:8080/dcs/rest',
type: 'POST',
contentType:'multipart/form-data',
data: ...
3
votes
2answers
732 views
Best approach: HTTP POST (multi-part) from Android to GAE
I would like to capture an image from the camera on Android, and send it to Google App Engine, which will store the image in the blob store. Sounds simple enough, and I can get the multi-part POST to ...
3
votes
1answer
348 views
How do I process multipart http responses in Ruby Net:HTTP?
There is so much information out there on how to generate multipart responses or do multipart file uploads. I can't seem to find any information on how to process a multipart http response. Here is ...
3
votes
3answers
1k 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">
<div><input ...
3
votes
4answers
5k 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
This is how my ...
3
votes
1answer
2k 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 ruby would be nice. ...
2
votes
2answers
37 views
how to remote download a file using multi-part downloading?
i want to download a remote file on internet to my host.
but i want to download it with multi-part downloading to make it download faster.
just the same as download managers.
2
votes
2answers
102 views
Is there a better way then using Lynx to convert HTML to Plaintext reliably in PHP
I want to convert a HTML file with a table based layout to plaintext in order to send a multipart email via PHP.
I have tried a few different pre built classes / functions that I've found on SO, but ...
2
votes
1answer
77 views
Haskell how to parse file uploads/multipart form data using Hack?
I'm creating a simple Hack2 app, and I can read body data with:
directory :: Application
directory env = do
body <- input_bytestring env
...
I'm trying to switch my form to use file ...
2
votes
1answer
102 views
How to send a multipart email with both plain text and HTML in Android?
I'm trying to find out the cleanest way in Android to send a multipart email via an Intent. The email is supposed to include a plain-text part and an HTML part.
Thank you.
2
votes
2answers
157 views
Send images from sdcard to server using multipart entry
I am making an android app in which i am sending image to server from /mnt/sdcard/DCIM/Camera/IMG_20110922_124932.jpg to serverthrough multipart request .. Can anybody help me out....
Any help will ...
2
votes
1answer
715 views
HOW TO - Uploading image from android to rails server - multipart
I'm developing an Android app and I'm working on photo uploading to my rails server.
If I upload ad image from browser, server gives me this (I'm using paperclip gem to upload):
COMMIT CODE
[...] , ...
2
votes
0answers
208 views
Plupload connection between multipart=true and showing upload percentage
Seems Plupload is a great tool. But I'm stuck in a simple problem here. I have set multipart = false (I don't want to send data in chunks), however, I want to show the percentage uploaded. But it ...
2
votes
0answers
378 views
SignatureDoesNotMatch on Amazon S3 multipart uploader
I'm working on AS3 multipart uploader. I'm using this documentation http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?RESTAuthentication.html for building signature. Here is my example:
...
2
votes
1answer
316 views
Qt multipart post problem
I need help with sending multipart post request. Main problem is that server doesn't recognise my request's post body part. Server side is working fine with android, but not with Qt and ...
2
votes
1answer
234 views
Extended MultipartEntity doesn't write out Streams correctly
I want to implement a ProgressDialog in my AndroidHttpClient. I found a simple implementation here CountingMultipartEntity.
Additional I added the content length support. I override the method ...
2
votes
1answer
326 views
Chunked Transfer Encoding problem with Apache Abdera
I'm using Apache Abdera to POST atom multipart data to my server, and am having some odd problems that I can't pin down.
It looks like an issue with chunked transfer encoding, but I'm insufficiently ...
2
votes
2answers
1k views
How to manually install a node.js module?
I want to upload a file to s3 so i want to run the upload program from this article:
http://www.componentix.com/blog/9
but for this i need to install the multipart module.
...
2
votes
1answer
397 views
Why does a PDF become corrupt/unreadable after mailing it through SMTP with Email::MIME?
I have followed the examples in Email::Sender and Email::MIME and it looks good, until you try to open the PDF. Then it is clear that it is smaller in size than the original and somehow corrupt. My ...
2
votes
1answer
337 views
Adding a BCC to a multipart ActionMailer action makes it not send as multipart, but garbage
I have code that looks like this:
def coupon_available_notice(order, bcc=false)
# [...]
headers = {
:to => @user.email,
:from => "info@domain.com",
:subject => ...
2
votes
4answers
596 views
I need Multi-Part DOWNLOADS from Amazon S3 for huge files
I know Amazon S3 added the multi-part upload for huge files. That's great. What I also need is a similar functionality on the client side for customers who get part way through downloading a gigabyte ...
2
votes
2answers
900 views
java multipart POST library
Is there a multipart POST library out there that achieve the same effect of doing a POST from a html form? for example - upload a file programmingly in Java versus upload the file using a html form. ...
2
votes
1answer
314 views
REST client HTTP multipart support
I have a 3-rd party REST domain that requires doing HTTP multipart POST requests in order to create/update resources. Moreover, getting resource representation is done by a GET request where the ...
2
votes
2answers
762 views
Parsing multipart/mixed responses in jQuery
Good day.
I'm new to jQuery, and have a passing familiarity with javascript, having spent most of my time on the server side.
My interest is in posting in the browser a multipart/form-data form ...
2
votes
2answers
995 views
rails mailer with different layouts
I use one layout for all my emails in my Notifier model (20+ emails)... however sometimes I just want to send a plain text email with no layout or html at all. I can't seem to be able to figure out ...
2
votes
1answer
522 views
Grails - Exception when stopping/cancelling an upload
I have a very basic upload action in my controller. It looks something like the action below. It works great. The only problem I'm seeing is when a user cancels an upload (or hits stop on their ...
2
votes
1answer
393 views
About multipart/form-data?
Is there another multipart/form-data like enctype but not form-data?
EDIT
Especially,what others are used in web applications?
2
votes
2answers
631 views
JavaMail BaseEncode64 Error
I'm currently developing an application which download attachment from gmail account.
Right now, I got error whenever downloading zipped attachment. But, not all, some I can retrieve it without error. ...
2
votes
4answers
5k 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 for most things so I ...
2
votes
2answers
235 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 part between the ...
1
vote
1answer
57 views
Multipart binary file POST in python 2.4
I already checked a lot of code snippets but i could not get how to post multipart both text and binary files in single request with only python 2.4? Here in comments mentioned something about BytesIO ...