request (http) is surely not parsed at the same time. You can breakpoint in org.apache.catalina.connector.Request#parseParameters (tomcat-catalina dependency if you need it).
Also please try adding in content-type header of the request charset=utf-8 It can be linked to CDI conversation handling, mapping "CDI Conversation Filter" to a not existing url mapping in your web.xml can throw it away if it is the issue. You can also add in WEB-INF/application.properties: org.apache.webbeans.application.supportsConversation=false Romain Manni-Bucau @rmannibucau <https://twitter.com/rmannibucau> | Blog <http://rmannibucau.wordpress.com> | Github <https://github.com/rmannibucau> | LinkedIn <https://www.linkedin.com/in/rmannibucau> | Tomitriber <http://www.tomitribe.com> 2015-03-30 23:46 GMT+02:00 Karl Kildén <[email protected]>: > Hi, I tried it but I have the same problem. It's weird that it works on > 1.7.1 because I have the same EL and JSF version regardless (JUEL 2.2.7) > and Myfaces 2.2.6... > > > > On 30 March 2015 at 21:55, Romain Manni-Bucau <[email protected]> > wrote: > > > Hi > > > > did you try to set it on Connector in server.xml instead of a filter? > > > > > > Romain Manni-Bucau > > @rmannibucau <https://twitter.com/rmannibucau> | Blog > > <http://rmannibucau.wordpress.com> | Github < > > https://github.com/rmannibucau> | > > LinkedIn <https://www.linkedin.com/in/rmannibucau> | Tomitriber > > <http://www.tomitribe.com> > > > > 2015-03-30 20:28 GMT+02:00 Karl Kildén <[email protected]>: > > > > > Hello! > > > > > > I am trying to debug why 2.0-SNAPSHOT gives me the wrong encoding in a > > post > > > method using JSF. The same app works fine using 1.7.1... When I debug > my > > > action method for example é is double encoded into é so I guess > > ISO-8859-1 > > > first then UTF-8? > > > > > > I already have a filter that sets encoding to UTF-8 and I have the > usual > > > meta tags in my facelets for it so I don't know how to debug it any > > > further... Any tips? > > > > > > cheers > > > > > >
