Has anyone successfully used file upload with WebServices. I always get an HTTP 415 error. And of course I used headers
'Content-type': "multipart/form-data" There is a discrepancy in the documentation. While http://openmeetings.apache.org/openmeetings-webservice/apidocs/org/apache/openmeetings/webservice/FileWebService.html says there are 3 parameters necessary The xml documentation lists only two sid and stream * <resource path="/file"> <method name="POST"> <request> <param name="sid" style="query" type="xs:string" /> <representation mediaType="multipart/form-data"> <param name="stream" style="query" type="xs:anyType" /> </representation> </request> <response> <representation mediaType="application/json" /> </response> </method>* Also the parameter name 'steam' is not accepted at all, as I get an 400 or 500 error. If I send the stream by the name 'file', as usual, I get 415. Unfortunately the catalina.out file doesn't report much more information.