Tagged Questions
The multipartform-data tag has no wiki summary.
23
votes
2answers
11k views
Using MultipartPostHandler to POST form-data with Python
Problem: When POSTing data with Python's urllib2, all data is URL encoded and sent as Content-Type: application/x-www-form-urlencoded. When uploading files, the Content-Type should instead be set to ...
19
votes
11answers
17k views
Multipart forms from C# client
I am trying to fill a form in a php application from a C# client (Outlook addin). I used Fiddler to see the original request from within the php application and the form is transmitted as a ...
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
6answers
852 views
How to send FormData objects with Ajax-requests in jQuery?
The XMLHttpRequest Level 2 standard (still a working draft) defines the FormData interface. This interface enables appending File objects to XHR-requests (Ajax-requests).
Btw, this is a new feature - ...
8
votes
2answers
9k views
Sending multipart/formdata with jQuery.ajax
I've got a problem sending a file to a serverside PHP-script using jQuery's ajax-function.
It's possible to get the File-List with $('#fileinput').attr('files') but how is it possible to send this ...
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 ...
6
votes
1answer
1k views
getPageContext().getRequest().getParameterMap() with multipart forms?
below is the code i'm using to test this:
<cfif structkeyexists(form, "submitted")>
<cfdump var="#getPageContext().getRequest().getParameterMap()#">
</cfif>
<cfoutput>
...
6
votes
3answers
6k views
How to submit a multipart/form-data HTTP POST request from C#
What is the easiest way to submit an HTTP POST request with a multipart/form-data content type from C#? There has to be a better way than building my own request.
The reason I'm asking is to upload ...
5
votes
5answers
2k views
uploadify: IO error
I've following code for multiple image upload:
<SCRIPT>
function render_uploadify()
{
$("#body_partition_middle").html('<DIV class = "photo_upload_w"><DIV class = "photo_upload" ...
5
votes
2answers
424 views
userland multipart/form-data handler
I'm looking for a drop-in include script / class that dissects multipart/form-data and fills up $_POST(+raw) and $_FILES from it. Usually PHP does that itself. But because the automatic handling is ...
5
votes
4answers
307 views
What is the '-' in multipart/form-data?
I want to ask a question about the multipart/form data. I find the http header of multipart post and the Content-Type: multipart/form-data; boundary=-----...---boundaryNumber. I want to ask, how many ...
4
votes
2answers
564 views
Javascript/HTML5 file API reading sequential files into multipart form data
I'm using the HTML5 File API to assemble multipart form data for submission by XHR to a web service. I have the whole thing working in FF, which has a nice convenient getAsBinary() method included in ...
4
votes
1answer
1k views
escaping CRLF in HTTP multipart/form-data content type (iOS)
I'm trying to post a file using the multipart/form-data content type, and I got this question:
Shouldn't I escape CRLFs when I write the content of a file? I got a code piece on the web and I think it ...
4
votes
1answer
10k views
How use multipart/form-data upload picture/image on Android
This is my code.
I got Http 400 error, can someone help me?
HttpClient httpClient;
HttpPost httpPost;
HttpResponse response;
HttpContext localContext;
FileEntity tmp = null;
String ...
4
votes
2answers
3k views
Apache HttpClient making multipart form post
I'm pretty green to HttpClient and I'm finding the lack of (and or blatantly incorrect) documentation extremely frustrating. I'm trying to implement the following post (listed below) with Apache Http ...
3
votes
3answers
118 views
How can I handle long header declarations in PHP requests?
I'm trying to use the Picasa Web Uploader API to upload galleries of photos to my website. I've been able to implement the button, get it set up in Picasa and get authentication working, but when it ...
3
votes
1answer
419 views
Parsing content-disposion header's filename in multipart/from-data
Hello According to RFC, in multipart/form-data content-disposition header
filename field receives as parameter HTTP quoted string - string between quites where
character '\' can escape any other ascii ...
3
votes
1answer
1k views
How can I POST a multipart HTTP request from Perl to Java and get a response?
I'm trying to post from one of my subroutines in Perl a request to a Java based controller.
But I'm not getting any kind of response back. I know the Java code works file because I can get a response ...
2
votes
1answer
36 views
How do I make soapUI attachment paths relative?
I'm using soapUI to test an HTTP server. I need to send a multipart/form-data request, and the request works fine when I go through the file chooser and attach it, but it's saving the path as an ...
2
votes
1answer
93 views
Building a multipart/form-data with binary image data in Django gives me a UnicodeDecodeError
--- Edited below with some more testing, please read :) ---
I'm struggling trying to build a multipart/form-data body in Python, basically I'm doing it with a buffer of strings in a list and then ...
2
votes
1answer
110 views
Java library for reading multipart/form-data http body containing multiple files
Basically, the following is what the format of data look like (it should follow HTTP standard format)
Content-Type: multipart/form-data; boundary=--3i2ndDfv2rTHiSisAbouNdArYfORhtTPEefj3q2f
...
2
votes
1answer
203 views
IE + jQuery.Form + multipart + json response = ie tries to download response
I'm trying to submit a form with a file field in it via jQuery.Form plugin, here's the code:
$('form').ajaxSubmit({
url: "/path",
dataType: "json",
contentType: "multipart/form-data"
...
The ...
2
votes
0answers
70 views
Switching to use a background image from no background image via a multi-part post to the Twitter API with Ruby and OAuth
I would like to change my profile background from no background image to a background image that I upload via the Twitter API using Ruby. I have no problems uploading new background images when my ...
2
votes
2answers
192 views
Indy adds = at every 72nd char with Multi part form data Post
With Delphi XE and Indy, I got some code which submits to a web form.
idhttp := TidHttp.create;
postData := TIdMultiPartFormDataStream.Create;
try
postData.AddFormField('name', edName.text);
...
2
votes
1answer
154 views
mulitpart upload not working with android + rails
i want to upload a file + String to my Rails app via an Android App. But I'll always get a weird error, when using the multipart upload in rails.
I'm using Apache HttpClient 4.1.1 + httpMime Lib ...
2
votes
1answer
911 views
enctype = “multipart/form-data” works different between ie9 and chrome
I want to post some data to another domain with the enctype equal to multipart/form-data, because I want the unmodified data in the server side.
Here is my test code:
<textarea name="txt" ...
2
votes
1answer
240 views
How to update a session variable
I am creating a multi-step form with Ajax and would like to change text displayed based on the value of a form field. I thought that a good way to do this would be with a session variable. How do I ...
2
votes
1answer
92 views
Help uploading a file with codeiginter
I am trying to upload a file using PHP and codeigniter. My problem is that I am getting an error returned
You did not select a file to upload.
I am using the following code,
...
2
votes
2answers
1k views
Android:How to upload .mp3 file and image to http server?
My code for uploading image to Server is :
String userIdParameter = String.valueOf(userId);
String fileName = "temporary_holder.jpg";
HttpURLConnection conn = null;
DataOutputStream dos ...
2
votes
1answer
1k views
Sending multipart form in android by HttpURLConnection (POST)
I want to send multipart form in my android app but without using org.apache.http.entity.mime so I've created mu own way but it doesn't work the way how I'm creating request:
public byte[] ...
2
votes
2answers
44 views
why does an http post from a mobile device occasionally fail?
i run a site that lets you record from your phone and post the audio to my apache2 server (it is an Amazon micro instance). however, every once in awhile the post doesn't go through successfully, the ...
2
votes
2answers
5k views
Sending Multipart File as POST parameters with RestTemplate requests
I am working with Spring 3 and RestTemplate. I have basically, two applications and one of them have to post values to the other app. through rest template.
When the values to post are Strings, it's ...
2
votes
2answers
1k views
How to upload Bitmap Image from a android device?
Thank you in advance.
I'd like to upload some bitmap image from my android app.
but , I can't get it.
Could you recommend some solutions for it.
or collect my source code?
ByteArrayOutputStream bao = ...
2
votes
0answers
384 views
Checkbox array $_POST[data] from multipart/form-data? [closed]
I am stumped. (But then I'm no expert programmer!)
I had modified a working form to include an upload script but now that it's using enctype="multipart/form-data" I can no longer seem to get at the ...
2
votes
2answers
2k views
How can I handle multipart/form-data POST requests in my java servlet?
I'm having a very hard time dealing with multipart/form-data requests with my java application server. From what I have found out, the servlet 3.0 specification provides methods such as ...
2
votes
2answers
667 views
Ruby/Mechanize Multipart Form With File Upload to a Mediawiki
I've been trying to write a ruby script using mechanize to batch upload a large number of images to a MediaWiki. The script runs without any errors but I suspect there is something wrong with the way ...
2
votes
2answers
970 views
Send multipart/form-data content type request
The follow http post request send data using multipart/form-data content type.
-----------------------------27311326571405\r\nContent-Disposition: form-data; ...
2
votes
1answer
678 views
Alternative way to grab progress on multipart/form upload (Android)
As described in this answer you cannot grab a progress of a multipart/form POST upload in Android using only the Android SDK, because there is an issue with the stream buffering when using ...
2
votes
1answer
2k views
multipart file-upload post request from java
I'm trying to make a program that uploads a image to a webserver that accepts multipart file-uploads.
More specificly i want to make a http POST request to http://iqs.me that sends a file in the ...
2
votes
1answer
932 views
android/rails multipart upload problem
My problem is that I try to upload an image and some text values to an rails server, and the text values end up as files, insted of just param values.
How the post looks on the server
Parameters: ...
2
votes
1answer
772 views
How can I use Python with Mechanize for posting multipart/form-data?
I am using http://pypi.python.org/pypi/mechanize/0.1.11 for programmatic web browsing, I want to be able to upload files to servers the same way the browser does (by sending the content as ...
2
votes
2answers
1k views
What is the boundary parameter in a HTTP Request?
I am trying to develop a sidebar gadget that automates the process of checking a web page for the evolution of my transfer quota. I am almost at it but there is one last step I need to get it working: ...
2
votes
5answers
8k views
Post multipart request with Android SDK
I'm trying to do something I thought would be relatively simple: Upload an image to a server with the Android SDK. I'm found a lot of example code:
...
2
votes
1answer
815 views
Python: urllib2 multipart/form-data and proxies
The Objective: A script which cycles through a list of proxies and sends a post request, containing a file to a PHP page on my server, which then calculates delivery time. It's a pretty useless ...
2
votes
3answers
6k views
Get form parameters from multipart request without getting the files
I'm looking for a way to get the form parameters of a HTTP multi-part request in a Servlet-filter without uploading files (yet).
request.getParameterMap() returns empty. I understand this is because ...
2
votes
3answers
3k views
Multipart/form-data and UTF-8 in a ASP Classic application
I have a problem that I really don't understand.
I'm trying to upload a files in a asp classic app, without the use of an external component. I also want to post some text that will be stored in a DB.
...
1
vote
1answer
40 views
Foreign character breaking when posted via multipart/form-data
I am using django-nonrel on the google-app-engine.
When I'm posting a foreign character,
in my case Korean Character, with a multipart/form-data it is breaking.
<form method="post" ...
1
vote
1answer
61 views
File uploading issue in jsp
I have to upload a file ,while iam trying to run showing the message
org.apache.jasper.JasperException: Exception in JSP: /RootSipResource.jsp:33
30: out.println("Cookies" + ...
1
vote
1answer
61 views
Multipart request loses information on larger file uploads from IE 7/8
I'm not sure if it happens in other browsers, because in other browsers, we're able to check the file size on the client side after the file is selected. We don't allow uploads larger than 2MB, so we ...
1
vote
0answers
78 views
python get uploaded file stream (multipart/form-data)
I'm currently trying to figure out how to get the stream of an uploaded file.
I want to receive the file live and send it to a seperate file server. Python receive files like PHP, doesn't it? I get ...