99.9% of the pages in my application are using UTF-8 encoding.
However for some special usecase in the client side, I need one of them to use Unicode (2 bytes for each character)
For that matter the header of this page is:
<%@ page language="java" contentType="text/html; charset=unicode"%>
...<my content>...
This implementation works fine and do the job, when the application is run on Tomcat and Webspher. However when it is deployed on Weblogic, I get the server error: unsupported encoding: 'unicode': java.io.UnsupportedEncodingException: unicode
Does someone know how I can force Weblogic to send pages in 'Unicode' encoding?