Hello everybody I had some problems with the request encoding. My German characters weren't correctly encoded by JSF. So I implemented a servlet filter to set my requests and responses to UTF-8 but it didn't solve the problem. After some unsuccessful tries I found a solution. I added enctype="multipart/form-data" into my form tags and now everything works fine. Now my questions: Do I have to expect any side effects with this solution? Why is it working when I set this attribute? Google told me that many people have the encoding problem but he didn't come out whit a proper solution.
Kindest regards, Reto

