We are uploading files to Zimbra with FileUploadServlet.
File name contains Eastern European characters. They are visible in Linux but replaced with ? in Zimbra briefcase.
We use CFML to upload, here is the code:
Code:
<cfhttp method="POST" url="http://#host#/service/upload?fmt=raw">
<cfhttpparam type="Cookie" name="ZM_AUTH_TOKEN" value="#token#">
<cfhttpparam type="Header" name="Content-Type" value="multipart/form-data">
<cfhttpparam type="FormField" name="requestId" value="#token#">
<cfhttpparam type="File" name="file" file="#file#">
</cfhttp>
Uploading with Firefox in Linux works fine.
What could be wrong?