Index: ChangeLog
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- ChangeLog	(revision 1507785)
+++ ChangeLog	(revision )
@@ -1,3 +1,10 @@
+2013-07-28  Harry Metske (metskem@apache.org)
+
+       * 2.10.0-svn-23
+
+       * fixed JSPWIKI-784 UTF-8 chars not correctly rendered if served by JBoss
+          (JBoss now also uses response.getOutputStream)
+
 2013-07-19  Glen Mazza (gmazza AT apache DOT org)
 
        * 2.10.0-svn-22
Index: jspwiki-war/src/main/java/org/apache/wiki/util/UtilJ2eeCompat.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- jspwiki-war/src/main/java/org/apache/wiki/util/UtilJ2eeCompat.java	(revision 1507785)
+++ jspwiki-war/src/main/java/org/apache/wiki/util/UtilJ2eeCompat.java	(revision )
@@ -47,6 +47,8 @@
 
     public static final String GLASSFISH = "Sun Java System Application Server";
 
+    public static final String JBOSS = "JBoss";
+
     /**
      * 
      */
@@ -143,6 +145,12 @@
         else if( serverInfo.indexOf( OC4J ) >= 0 )
         {
             log.info( "Oracle Container for JEE detected" );
+            // use response.getOutputStream instead of response.getWriter
+            useStream = true;
+        }
+        else if( serverInfo.indexOf( JBOSS ) >= 0 )
+        {
+            log.info( JBOSS + " detected" );
             // use response.getOutputStream instead of response.getWriter
             useStream = true;
         }
Index: jspwiki-war/src/main/java/org/apache/wiki/Release.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- jspwiki-war/src/main/java/org/apache/wiki/Release.java	(revision 1507785)
+++ jspwiki-war/src/main/java/org/apache/wiki/Release.java	(revision )
@@ -75,7 +75,7 @@
      *  <p>
      *  If the build identifier is empty, it is not added.
      */
-    public static final String     BUILD         = "22";
+    public static final String     BUILD         = "23";
     
     /**
      *  This is the generic version string you should use
