Is there a way to set the Content-Type per file in a multipart upload?
All I can see is adding Content-Type at the overall request and that needs to be
Content-Type: multipart/form-data
Update with example of request:
When I insert a file (of type .CSV) into the multipart request, it does not add the content type:
POST /mywebapp/upload HTTP/1.1
Host: localhost
User-Agent: Paw/3.1.5 (Macintosh; OS X/10.13.3) NSURLConnection/1451
Content-Type: multipart/form-data; charset=utf-8; boundary=__X_PAW_BOUNDARY__
--__X_PAW_BOUNDARY__
Content-Disposition: form-data; name="file"
column1, column2
--__X_PAW_BOUNDARY__--