juanpablo-santos commented on PR #322:
URL: https://github.com/apache/jspwiki/pull/322#issuecomment-1839540018

   Hi @udittmer ! would you mind trying 2.12.2-git-11 to see if the issue 
persists?
   
   The next filter on the filter chain after `WikiJSPFilter` is 
`WikiServletFilter`, which, early on, is doing this:
   
   ```java
   // Set the character encoding
   httpRequest.setCharacterEncoding( 
m_engine.getContentEncoding().displayName() );
   ```
   
   a quick peek at that javadoc method yields
   >Overrides the name of the character encoding used in the body of this 
request. This **method must be called prior to reading request parameters** or 
reading input using getReader(). **Otherwise, it has no effect**.
   
   So the initial fix was most probably rendering this call useless, hence the 
errors you were expecting. I've added that call prior to the `URLConstructor` 
call and now everything behaves as expected. I've left the 
`setCharacterEncoding` call also in `WikiServletFilter`, just in case a call 
goes through that filter without going through `WikiJSPFilter` first (like most 
probably on the preview pane).
   
   HTH!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@jspwiki.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to