The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
25 views

How to make CommonsMultipartFile from absolute file path?

I'm creating an API for my application. In the GUI browser based application the file is uploaded via a form submission. So I simply do CommonsMultipartFile file = request.(myfile). However, the API ...
0
votes
1answer
40 views

the request was rejected because no multipart boundary was found in Grails

I am trying to send a request with content-type multipart/mixed and simply print the request in my controller with the line println params However, I keep getting an error: the request was rejected ...
0
votes
1answer
16 views

Error 302 when trying to post D2L topic using multipart

This issue is related to one I posted yesterday but I have uncovered a bit more and am now getting a different error. I removed the code from Android to try straight from Java. I also tried 2 ...
0
votes
0answers
13 views

Multipart Request issue in android - Throwing BAD REQUEST

private void CreateaMultiPartRequest() { try { HttpClient client = new DefaultHttpClient(); HttpPost post = new ...
0
votes
2answers
30 views

How to show video obtained from a http request in Android and iOS?

Here I got a URL. I can't provide the whole string but part of it is "http://*/video.mjpg". When I open it with browser(firefox), it shows the video. When I analyze the package using Fiddler, it shows ...
0
votes
0answers
32 views

Javmail getting Multipart message Content

I'm working on an email client for my Android Phone, and I want to get the Content of a message wich is in Multipart format. The text/plain content I get on the following way: public String ...
2
votes
2answers
68 views

How to upload image in to php server using Multipart

I have been headache , how to upload image in to server.It is new task for me.but big confusing for me.i searched on stackoverflow and googled. but i getting problems. My intention is Upload photo ...
1
vote
1answer
38 views

$_POST is empty even though CONTENT_LENGTH is correct

I've got an HTTP POST pointed at two different places. The first location is handled by a thirdparty solution, so I can't see how they're handling the data (which they must be because the values are ...
0
votes
0answers
14 views

Form not submitting in local development server not in live server - enctype=“multipart/form-data” issue

In JSP page i have an attribute called enctype="multipart/form-data". While I try to submitting the form it not works, if I delete the enctype attribute the form gets submit successfully. I have using ...
2
votes
0answers
33 views

Couldnt play the audio file uploaded from android to node.js server

I have tried uploading an audio file from android to node.js server,but unfortunately file uploaded in the server is not playing. It shows the error "No suitable decoder module: VLC does not support ...
0
votes
2answers
37 views

Multipart data upload in android is not working

I'm trying to upload multipart data in android but my code isn't working. My code is below. My upload information is mostly text fields. So I kept a HashMap so that the key will contain the field name ...
0
votes
1answer
58 views

how to handle multipart request using http client

Following is my code to handle Multipart using httpclient if(methodParams.getDataType().length()>0 && methodParams.getDataType().equals("org.springframework.web.multipart.MultipartFile")){ ...
0
votes
1answer
67 views

multipart/mixed in Iphone Application

I am currently trying to send a multipart/mixed request in iphone application but the service is always returning the http status code 500. I don't have access to the source code of the webservice. In ...
0
votes
0answers
59 views

servletfileupload.ismultipartcontent(request) returns false even after setting enctype=“multipart/form-data” in the form

servletfileupload.ismultipartcontent(request) returns false in the action, even after setting enctype="multipart/form-data" in the form. i am using struts 2. <s:form enctype="multipart/form-data" ...
0
votes
0answers
23 views

Extra header parameters for multipart uploads

When making form requests, before each part in the multipart data, I get a couple headers inserted like this: ------WebKitFormBoundary9GAg9hUgKAtE1jsV Content-Disposition: form-data; name="file1"; ...
0
votes
1answer
384 views

Sending multipart SMS from device converting into MMS

After looking on th e website, I was not able to find any solution to this problem. Let me explain a bit more : I'm trying to send (programmatically) from an App a multipart SMS. It's actually ...
0
votes
1answer
26 views

Multipart Entity for perl for attaching a file through API not working

I have the following code and want to attach a file using an API. This code is delivering me the URL but the file is not getting attached. #!/usr/bin/perl use LWP::UserAgent; $ua = ...
0
votes
1answer
70 views

Spring upload file problems

I need to upload file from browser to server. I use spring 3.2 as my web framework. So i configured my app like this. 1 - I got web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app ...
0
votes
0answers
37 views

Multipart entity for POST in perl not working

Here is my code: I am getting the URL as response but the desired file is not getting attached through API. Please suggest. #!/usr/bin/perl use LWP::UserAgent; $ua = LWP::UserAgent->new; my ...
0
votes
1answer
30 views

Multipart POST using perl not fetching desired results

I am trying to use an API using multipart entity. I guess there is something i am missing. My current code is as follows: #!/usr/bin/perl use LWP::UserAgent; $ua = LWP::UserAgent->new; my ...
0
votes
1answer
43 views

PHP Pear Email Text Encoding not being excepted

How do I correctly set the text encoding for a multi-part email using Pear? I've looked at many examples and I believe I am setting it correctly. However, When sending emails they are arriving with ...
0
votes
2answers
47 views

How do I make a Multipart request without creating files on the hard disk?

I need to request an http api, the problem is that instead of a common post request where all the parameters are separated by an &, they expect a Multipart request for each one of the parameters ...
0
votes
0answers
40 views

Fordwarding a multipart request from a servlet filter

I'm trayin to do a request forward from a servlet filter. It works fine if the request is not a "multipart/form-data", but if it is, the forward is completed but the target servlet does not receive ...
1
vote
1answer
181 views

How to send a “multipart/related” with requests in python?

I'm trying to send a multipart/related message using requests in Python. The script seems simple enough, except that requests only seems to allow multipart/form-data messages to be sent, though their ...
0
votes
0answers
81 views

multipart/form-data and JSF 2 portlet application

I am developing a JSF 2.0 portlet application to run on webSphere portal 8. In my form, I needed to upload files, hence, my form enctype attribute is enctype= multipart/form-data. The problem is ...
0
votes
0answers
24 views

Error Sending Attachment With PHP

I am trying to create an attachment on the fly and send it with PHP. I am using the script below as a test. $to = "me@mydomain.com"; $from = "me@mydomain.com"; $subject = "This is a test"; ...
3
votes
2answers
256 views

Spring MVC @RequestBody give me an empty String when use with @RequestParam MultipartFile

I have a problem with this web service code @Controller @RequestMapping("/u_tutorial") public class UploadTutorial { @RequestMapping(value = "tutorial1", method = RequestMethod.POST, headers = ...
1
vote
0answers
72 views

Generating HTTP multipart response in Netty

I'm creating a REST service which returns some computed values back to the client. Netty is very performant at doing this. However, there are cases, when I need to return multiple values for the same ...
1
vote
1answer
104 views

android multipart php post error

I'm trying to upload file from android to server. I used php for server. This isn't working and I can not find why. Please help me. HttpClient client = new DefaultHttpClient(); HttpPost ...
0
votes
1answer
75 views

Multi part download with libcurl

I want to be able break up a file and download it in parts. From what I've read I should be able to accomplish this with curlopt_range in libcurl. Unfortunately all example code I've seen is for php ...
0
votes
0answers
42 views

how broken image file when ios multipart to server

my code NSString *urlString = [NSString stringWithFormat:@"%@%@", urlHeader, urlBody]; NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:urlString] ...
1
vote
1answer
52 views

Select with Inner Join with Multipart Identifier and Having Clause

I need to select certain fields for a multipart identifier that has duplicates. I have the query to grab the duplicates correct. SELECT b.MemEmpID, b.LastName, b.FirstName FROM ...
0
votes
1answer
40 views

MIME: multipart in multipart

I am Writing a little Mail parser for a project and to understand mail better. There came up a question about Multiparts. When I have a Mail with Content-Type: multipart/alternative oder any other ...
0
votes
1answer
40 views

How to deal with broken multipart uploads?

I have a PHP script that receives images from remote devices and saves them to the database. The script, launched from Apache, receives first a header defining what is being uploaded, and then the ...
0
votes
0answers
107 views

file uploading issues in open-shift .multipart-form data in jboss7

My rest method for accepting multipart-form data is not working in my openshift projects deployed in jboss7. 405 status code is coming but it is working fine in my localhost server. @POST ...
0
votes
1answer
262 views

Handling multipart response from Jersey server in Android client

I've managed to send multipart message from Android to Jersey server like this: File file = new File(imagePath); HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new ...
0
votes
1answer
79 views

Sending SMIME E-Mail using Open SSL, the email body is not displaying

When create s/mime email using OpenSSL, and send , the receiving email has smime content attached and signature is verified, but the email body is not visible through email clients such as Mac Mail ...
0
votes
1answer
90 views

Downloading and merging multipart file in javascript

I need some help with below requirement. Download huge multipart csv file from webserver and join those parts at client side before opening it for user. I can get the number of parts and have their ...
2
votes
2answers
167 views

Synchronous reading of a multipart upload alongside Django

I have a Django application which needs to have access to reading multipart file uploads as file-like objects as they're uploaded, which means that I need more or less synchronous access to the ...
0
votes
0answers
234 views

Spring MVC multipart response

I'm trying to write full multipart flow, from the client side sending multipart request using Spring restTemplate and from the server side auto resolve the different parts to objects (I'm using JAXB ...
0
votes
1answer
104 views

How do I properly format this multipart email?

I'm having a real hard time formatting a multipart email, which results in a blank document being shown by any mail program I view it in. Does anyone know what I'm doing wrong here? Sorry if this ...
1
vote
1answer
58 views

Sending multipart mails and attachments

I am trying to send an E-Mail using the gem 'mail' with Ruby 1.9.3. It contains an text/html and an text/plain part which should be embedded as alternative parts as well an attachment. This is my ...
1
vote
0answers
124 views

Sending a model object and a binary stream in one multipart response

I´m currently recovering from a change in the company network configuration, which assassinated the file transfer in my document management application when users are connected via VPN. The ...
1
vote
0answers
112 views

extracting multipart/form-data using apache common file upload

I am trying to extract the multipart content from the httprequest using apache common file upload library. Is there a reason why the parsing on the same request doesn't work for the second time? here ...
0
votes
1answer
71 views

File contents of multipart file upload not shown in HAR (Http Archive) produced by Google Chrome

I am uploading a CSV file to a server and while debugging it I wanted to make use of the HAR file produced by google chrome developer tools. The postData of the request I am interested in does not ...
1
vote
3answers
653 views

Multiple File upload using single servlet request

I want to offer to upload multiple files clicking upload button only once. Can I use multipart to send files? If yes, then how? P.S.: I don't want to use flash or send one file at a time.
0
votes
1answer
174 views

libcurl multipart post of variable length data objects

I'm having a difficult time with libcurl trying to adapt it to a particular situation. What I'm doing is essentially loading a variable number of objects into memory, performing various transforms on ...
0
votes
1answer
224 views

Android multipart http request

I'm trying to send drawable to server but it tells me that my request is wrong. I've added a filename to request (it was absent) but nothing changes. Please point to my mistake. Thanks. import ...
2
votes
0answers
200 views

JavaMail - signed content and attachments - signature does not fit

I really got stuck in here. The goal is to create a signed mail, which has attachments, just using the java-mail-API (and Bouncy-Castle for signing) I tried a lot, I made research, now I have a ...
0
votes
0answers
390 views

SOAPUI - REST request multipart/mixed - how to add attachment

I am trying to test RESTful service which is configured to consume multipart/mixed using soapui tool. @POST @Path("requestXmlAndAttachment") @Consumes({ "multipart/mixed" }) @Produces({ ...

1 2 3 4 5 8