I hav a simple code that attempts to use Desktop for multiple file
upload to a server(a simple file upload servlet hosted on jboss and
written using apache-file-upload).
Once I open the request,
this is how I set it to be multiplart content:
request.setRequestHeader("Content-type", "multipart/mixed");
On the server I get the following exception:
org.apache.commons.fileupload.FileUploadException: the request was
rejected because no multipart boundary was found
Am I missing something in the header? all help appreciated!!!