Dispatch request to an Async Servlet from managed bean generate exception
- by Thang Pham
when a button click, I need to have stuff running in my background, so I have a async Servlet. From my managed bean, if I do redirect, it works great (meaning that it execute my run() method inside my class that extends Runnable correctly). Like this
String url = externalContext.getRequestContextPath() + "/ReportExecutionServlet";…