2 Replies Latest reply on Dec 21, 2015 2:22 AM by muthu.kumar

    Jboss Locale change to iso-8859-9

    muthu.kumar

      Hi All

       

      I am using JBOSS EAP 6.1.1 as application server for my MDM ( Informatica).

       

      My vendor requested me to change the locale ijn Jboss to iso-8859-9 ?

       

      Can you please suggest how and where to perform this change.

       

      Thanks in advance.

      Kumar

        • 1. Re: Jboss Locale change to iso-8859-9
          jaysensharma

          Hello Kumar,

           

          The default encoding of a request the container uses to create the request reader and parse POST data must be "ISO-8859-1" if none has been specified by the client request.

           

          Where exactly you want those settings to be applied? Like for which kind of requests?


          At the page encoding level / URI encoding level you can do the following. You can try the following setting in your standalone*.xml file.

           

          <system-properties>
              <property name="org.apache.catalina.connector.URI_ENCODING" value="ISO-8859-9"/>
              <property name="org.apache.catalina.connector.USE_BODY_ENCODING_FOR_QUERY_STRING" value="true"/>
          </system-properties>
          
          
          

           

          If your application is JSP based then you may try with following kind of web.xml

           

              <jsp-config>
                  <jsp-property-group>
                      <url-pattern>/*</url-pattern>
                      <page-encoding>ISO-8859-9</page-encoding>
                  </jsp-property-group>
              </jsp-config>
          
          
          
          • 2. Re: Jboss Locale change to iso-8859-9
            muthu.kumar

            Thanks Jay