[ 
https://issues.apache.org/jira/browse/CB-9563?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alex Mantsurov closed CB-9563.
------------------------------
    Resolution: Fixed

> Mulptipart form data is used even a header named Content-Type is present
> ------------------------------------------------------------------------
>
>                 Key: CB-9563
>                 URL: https://issues.apache.org/jira/browse/CB-9563
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin File Transfer
>            Reporter: Alex Mantsurov
>            Assignee: Sergey Shakhnazarov
>              Labels: triaged
>
>  I'm uploading media files to Amazon S3.
>       
>        ft.upload(
>                 path,
>                 url,
>                 function(result) {
>                     console.log(result);
>                 },
>                 function(error) {
>                     console.log(error);
>                 },
>                 {
>                     httpMethod  : 'PUT',
>                     fileName    :  name,
>                     mimeType    :  type,
>                     chunkedMode :  false,
>                     headers: {
>                         'Content-Type'   :  type,
>                         'x-amz-acl'      : 'public-read'
>                     }
>                 }
>             );
> After uploading the binary is wrapped:
> --+++++org.apache.cordova.formBoundary Content-Disposition: form-data; 
> name="file"; filename="photo_032.jpg" Content-Type: image/jpeg 
> Content-Length: 43084
> {binary data}
> --+++++org.apache.cordova.formBoundary--
> So, multipart data IS USED, but according to the docs:
> if a header named Content-Type is present, multipart form data will NOT be 
> used
> Expected result:
> if a header named Content-Type is present, multipart form data will NOT be 
> used



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to