* @param request Object that encapsulates the request to the servlet.
* @param response Object that encapsulates the response from the servlet.
*/
public final void service(final HttpServletRequest request, final HttpServletResponse response) throws ServletException, IOException {
if (initSuccess) {
Factory.doWork(new FactoryWork() {
public void doWork() {
try {
HTTPSettings webSettings = HTTPSettings.lookup();
request.setCharacterEncoding(webSettings.getEncoding());
} catch (UnsupportedEncodingException e) {