Wednesday, October 29, 2008

Steps to change the language displayed in Admin Console

 ·          Before server startup
First you need set the preference languages specified in the browser 
·          To set preference language in browser
Right click the internet explore icon >>>>select >>>properties>>>general tab>>languages >>>add encoding  
After server start up 
      In admin console on right side panel click on 
                        Console>>>>preference >>>language>>>select desired language from  
                          drop down menu
      It is necessary to click the refresh button on your browser to see the changes 
 
Would CP1252 coding can recognize the codings for ASCII, UTF-7 and UTF-8?
1.            Weblogic server 8.1 is a Java application program. All strings are handled internally as Unicode strings. 
2.            Each encoding name has certain specific charsets which are used in HTML pages.
3.            The encoding conversion between Unicode and the HTML charsets is performed using the Java encoding converter when handling HTML data.
4.            Various charsets are used in HTML pages.
5.            It is recommended that you use the same particular encoding throughout your application.
 
Example:
res.setContentType("text/html;charset=Shift_JIS");
 
 
I referred below links and jotted down above points for more information refer below link
http://edocs.beasys.co.jp/e-docs/wls61/jconfig/wls61jconfig.html#1013050
 
http://edocs.beasys.co.jp/e-docs/wls/docs81/en/relnotes_ja.html

No comments: