Re: Problem with form upload and filenames containing accents

2015-02-12 Thread Michael Osipov
Hello, I'm writing a unit test to simulate behavior of different browsers regarding multipart file upload where the filenames may contain letters with accents. The server has noticed that some browsers (such as Chrome) use composed accents (a single character code point with the character

Re: Problem with form upload and filenames containing accents

2015-02-12 Thread Oleg Kalnichevski
On Thu, 2015-02-12 at 12:00 +0100, Christopher BROWN wrote: Hi Michael, The Stack Overflow link refers to file download more than multipart form file upload, and I'm already aware of these issues for download. On the server side, I'm reading in the multipart form data with files using

Re: Problem with form upload and filenames containing accents

2015-02-12 Thread Christopher BROWN
Hi Michael, The Stack Overflow link refers to file download more than multipart form file upload, and I'm already aware of these issues for download. On the server side, I'm reading in the multipart form data with files using Apache Commons FileUpload, which can read the filenames supplied by

Problem with form upload and filenames containing accents

2015-02-12 Thread Christopher BROWN
Hello, I'm writing a unit test to simulate behavior of different browsers regarding multipart file upload where the filenames may contain letters with accents. The server has noticed that some browsers (such as Chrome) use composed accents (a single character code point with the character and

Re: Problem with form upload and filenames containing accents

2015-02-12 Thread Christopher BROWN
Oleg, Using RFC6532 mode solves the problem, so thanks for that. I've never looked at Mime4J before, interesting, so thanks for that too. -- Christopher On 12 February 2015 at 12:07, Oleg Kalnichevski ol...@apache.org wrote: On Thu, 2015-02-12 at 12:00 +0100, Christopher BROWN wrote: Hi