Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is on GlassFish 3.1, using PrimeFaces over Mojarra and salted with MyFaces CODI. On just about every request the following message appears:

WARNING: PWC4011: Unable to set request character encoding to UTF-8 from context /com.myapp_war_0.1, because request parameters have already been read, or ServletRequest.getReader() has already been called

This has happened ever since I started the project -- so far I have been ignoring it but now I have realized I am wasting a lot of time reading around it. I found an interesting but incomplete work-around here, but I don't understand it.

Can someone suggest how to tamp down this message without suppressing other possible warning messages?

share|improve this question
From my experience this famous message gets lost after upgrading mojarra version. Which one are you using? – Osw Oct 4 '11 at 8:35
@Osw: there was indeed a related bug in one of the earliest Mojarra 2.0.x versions, but that was caused by a slight different issue and affected Ajax requests only. OP is however using GF 3.1 which bundles JSF 2.1. – BalusC Oct 4 '11 at 12:34
@osw: specifically I am using GF 3.1.1 Build 12. I probably shouldn't but I let both Netbeans and GF download all updates as soon as they become available. I recall this problem at nearly every version level, however. It just got to the point where I was testing a lot of pages, generating enough of those error messages in the process, that I was stimulated to tak action on it. BTW the Mojarra version in this package is 2.1.3 (FCS b02). – AlanObject Oct 4 '11 at 15:31

1 Answer

up vote 24 down vote accepted

JSF/Facelets uses UTF-8 by default to decode request parameters, but Glassfish itself uses ISO-8859-1 by default. So, if Glassfish has already set it beforehand and the parameters are already parsed beforehand, then it cannot be changed anymore. You need to tell Glassfish to use UTF-8 instead to decode request parameters, so that it doesn't need to be changed when JSF want to get them.

Add the following entry to the <glassfish-web-app> of your /WEB-INF/glassfish-web.xml file:

<parameter-encoding default-charset="UTF-8"/>

(note: the file and root entry is previously called sun-web.xml and <sun-web-app> respectively)


Update: as to why Glassfish has set it beforehand, it's possibly caused by PrimeFaces. See also this related question: Typing Chinese with PrimeFaces' editor component.

share|improve this answer
Well that worked. Thanks once again. I wonder why this kind of information is so hard to find? If it weren't for this web service I would be even more hopelessly behind schedule than I am! – AlanObject Oct 4 '11 at 15:29
You're welcome. It's mentioned in among others the Glassfish wiki and my Unicode blog. – BalusC Oct 4 '11 at 15:46
5  
+1, you are really a GENIUS, when it comes to Java EE. Wish I could have your brain :-) I will conquer internet :-) – nIcE cOw Mar 9 '12 at 13:15
I've tried doing this with GlassFish v3.1.2 and JSF 1.2.15 without luck :-( – Allan Lykke Christensen Aug 8 '12 at 11:55
1  
@BalusC I get this warning when I access the Glassfish Admin Server pages at localhost:4848. I presume the file you mentioned is "C:\glassfish3\glassfish\lib\install\applications__admingui\WEB-INF\sun-web.xml" ? If so, this file already has the parameter-encoding tag set to UTF-8. Any other ideas how to get rid of this warning? (I'm using a clean installation of Glassfish). – Chris Feb 12 at 15:30
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.