Questions tagged [multipart]

Multipart is content type that allows multiple MIME types to be embedded in a single message.

Commons uses of multipart subtypes include:

References

1904 questions
0
votes
1 answer

Multipart Fileupload Formdata attachment is null

Im using a swagger-generated undertow server (light4j) and am trying to achieve a fileupload via html form. Problem is that the Formdata, which is supposed to have the file in it, is null. Code is very simple, what could be the issue here? The…
user2312386
  • 111
  • 2
  • 8
0
votes
1 answer

How to parse a continuous multipart response in NodeJS

I'm creating a tool that needs to consume a Security System API. I can't give much information about it but as the API documentation explains: A stream of events data will be sent using HTTP Multipart x-mixed-replace transmission. The response data…
0
votes
2 answers

How to create multipart/mixed request with xml in the request body with Java?

Down here is one request I want to create with JAVA. But in the first part I want to put XML, not fields or text but XML and in the second - my file which I want to upload. Also every part of my request should have different content type and content…
ivanlirchev
  • 17
  • 1
  • 7
0
votes
1 answer

How to give image path while image upload from jsp

This is working completely file I want change only "e:/Test/PIC1.JPG" this path. How I write here when I am uploading image from jsp public static void main(String[] args) { String charset = "UTF-8"; File uploadFile1 = new…
0
votes
0 answers

Sending multipart mail in java with inline HTML

I am working on sending multipart email. My first part of the email is text and the second part is html. I followed Best Practices - Sending javamail mime multipart emails - and gmail but instead doing: Multipart multiPart = new…
0
votes
1 answer

How can volley handle multipart request? Is it efficient? Which other libraries are best suited for sending and receiving big files?

I am using volley currently to send and get a normal text from the server. Can volley be used to send and receive multipart data to the server ?? Is it efficient? Which alternative library do you suggest to send receive multipart data from server?…
MEET DURO
  • 31
  • 3
0
votes
1 answer

How to turn a mimedata attachment block from raw email into a file? (in ruby)

We audit our outgoing emails, so that later on we can access the raw email text. For emails that had attachments, I can see a mimepart section like this: --mimepart_5a65f317c19d2_24515571f0306fc12617a Content-Type: application/pdf;…
Max Williams
  • 32,435
  • 31
  • 130
  • 197
0
votes
1 answer

Java Jersey register Multipart for uplaod file service - ERR: No meesage body reader has been found

I'm new to RESTful services and Jersey. I'm trying to create a ws that respond to POST call with enctype mutipart/form-data. First of all I have my application Class import com.ibm.sampleapp.rest.ConversationWS; import java.util.HashSet; import…
HCF
  • 23
  • 7
0
votes
0 answers

How to upload multipart image to web server data using Swift?

URL= http://peerro.com/index.php/api_v1/profile/upload_media Multipart parameters-: data = {"mediauploaddata": { "type" : "certificate", "id" : 168, "user_id" : 159 } } file=image Note: please refer first images Now custom header…
0
votes
1 answer

Parse multipart form on Google App Engine

A project I'm working on depends on having a service hosted on Google App Engine parse from SendGrid. The following code is an example of what we're doing: package sendgrid_failure import ( "net/http" "fmt" …
Spotlight
  • 472
  • 1
  • 11
  • 22
0
votes
2 answers

Multipart upload binary content with OneDrive Rest APIs

As per the API documentation here I formed my request with postman as follows: . This is working fine. But when it comes to binary content(encoded in base64 format), it uploads the file but that is not previewed when I try to open the same on…
chetan choulwar
  • 305
  • 1
  • 14
0
votes
0 answers

Struggling with s3 multipart upload guzzle for Eventbrite

I'm trying to upload to s3 based on the documentation in Eventbrite but I'm getting nowhere. I think it's down to the structure of my request but I've tried multiple different things and nothing is really working and I get a 'Bucket POST must…
Michael Mallett
  • 734
  • 1
  • 12
  • 28
0
votes
1 answer

java.io.IOException: Incomplete parts with embedded Jetty Server

I`m programming a little file server which gets documents via HTTP-POST requests from another software. The requests are always "multipart/form-data" types, so I`d like to split it via .getParts(); Unfortunately I always get a "java.io.IOException:…
0
votes
2 answers

IP Camera continuous snapshots vs. video

I'm making a project using c# 2013, windows forms and this project will use an IP camera to display a video for a long time using CGI Commands. I know from the articles I've read that the return of the streaming video of the IP camera is a…
Ahmed
  • 559
  • 1
  • 5
  • 14
1 2 3
99
100