https://issues.apache.org/bugzilla/show_bug.cgi?id=55688

--- Comment #1 from Vikram <[email protected]> ---
Some more details, my sample servlet "get" code looks like this,

@Override
    protected void doGet(HttpServletRequest req, HttpServletResponse response)
            throws ServletException, IOException {
        req.setAttribute("org.apache.catalina.ASYNC_SUPPORTED", true);

        AsyncContext asyncContext = req.startAsync();
        asyncContext.setTimeout(10000);

        HttpServletResponse httpServletResponse =
(HttpServletResponse)asyncContext.getResponse();
        try {
            httpServletResponse.sendRedirect("http://www.google.com/";);
        } catch (IOException ex) {
            throw new RuntimeException(ex);
        }
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to