0
votes
1answer
11 views
What are the ramifications of null bytes and multipart/form-data?
A third party is sending us a flat file that is supposed to contain exclusively printable ASCII characters. However, we've discovered that there's a string of about 50 0x00 bytes in the middle of the …
0
votes
1answer
28 views
Trouble uploading to twitpic
Hi,
I am trying to upload a photo using the API and am having an issue that I hope you can help me with. Below, I have pasted the http request to the API (minus the twitter username/password). I am …
0
votes
1answer
34 views
POST an mp3 file using CURL
Hey all,
I have been searching and trying different configurations for POSTing mp3 files via CURL for a few hours, but none seem to work. The most recent form I have settled on looks like this:
curl …
0
votes
1answer
65 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 …
3
votes
3answers
88 views
Browser support of multipart responses
Hi,
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 …
0
votes
2answers
110 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
187 views
Multipart/form-data and UTF-8 in a ASP Classic application
Hi all,
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 …
0
votes
1answer
59 views
How do i post multipart/form-data that contain symbol
It made me have a headache for hours, i try to post image to twitpic with my twitter account using curl.
curl -F "username=myusername" -F "password=='hwsh[g" -F "message=test twitpic" -F …
0
votes
2answers
207 views
How to create and submit a form using Java Script
I'm writing a Firefox extension that's to be used in house. Basically, I need to submit a pdf file and some text values to a web service. Right now I have a html page that does this. I need the …
0
votes
1answer
138 views
Avoid multipart/form-data for file transfert
I wrote a light http server in C which can handle simple requests. So I totally control the server side and its future evolution.
Now on my Web Application written in Javascript/ExtJS, I need to …
4
votes
3answers
2k 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 …
0
votes
3answers
596 views
PHP--parsing multipart form data
I'm trying to put together a HTML POST-ed form that has two fields--a file upload, and a text field. Since the form has a type multipart/form-data for the file upload, I can't get at the text field …
0
votes
3answers
402 views
RESTlet: How to process multipart/form-data requests?
How do you catch incoming @Post variables when it is a multipart/form-data request?
For a regular Post request I would do:
@Post
public void postExample(Representation entity) throws Exception{
…
1
vote
2answers
162 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 request to a different …
3
votes
2answers
1k 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 …
