Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
javax.servlet.ServletException: weblogic.servlet.jsp.CompilationException: Failed to compile JSP /WEB-INF/content/intro.jsp
messages.tag:2:30: The encoding specified on the page cannot be different than detected encoding for the file.
<%@ tag body-content="empty" pageEncoding="utf-8" %>
                             ^----------^

If I remove pageEncoding attribute in tag file, it works. But I think this is not a solution, because it already works on another Weblogic server. So the problem is with my Weblogic configuration. By Googling the error, I did not found anything.

Any ideas? I have tried setting encoding to UTF-8 in weblogic.xml and many other things I can't even remember, I have had this issue for some time now.

share|improve this question

3 Answers

Make sure that the contents of /WEB-INF/content/intro.jsp are also UTF-8 encoded.

share|improve this answer
They are. Problem is with the Weblogic configuration, not with the application. – Enno Jun 29 '10 at 14:10
@Enno: Are they correct before or after the FTP transfer to the server host? – BalusC Jun 29 '10 at 14:28

Where FTP is involved? Im running Weblogic at local machine, where I'm developing.

share|improve this answer
Are you the one and same user? Please register your account so that you can reuse it elsewhere or stick to one and same webbrowser without clearing cookies :) – BalusC Jun 29 '10 at 14:52
Yes, I was the same user. – Enno Jun 30 '10 at 6:19

WebLogic expects strict encoding. So add the page encoding tag as the first declaration before any other declarations in the jsp. It solved the problem for me.

From:

<%@ page import="com.abc.xyz.Helperjsp"%> <%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %>

To:

<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8" %> <%@ page import="com.abc.xyz.Helperjsp"%>

share|improve this answer

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.