Does the FacesServlet in JSF 2.0 support the servlet 3.0 async features?
Asked
Active
Viewed 1,896 times
1
-
SOLVED: I refer you to this post: http://stackoverflow.com/questions/7855712/how-to-avoid-request-set-async-supported-true-to-enable-async-servlet-3-0-proces?rq=1 – Given Nov 28 '12 at 11:57
1 Answers
4
No, with the simple reason that JSF 2.0 is designed with Servlet 2.5 in mind.
JSF 2.1 in turn is however designed with Servlet 3.0 in mind, but it does not utilize the new async features, perhaps with the simple reason being that there's just no need for it. The closest what you can get is ajax poll/push provided by 3rd party component libraries like RichFaces, PrimeFaces or IceFaces.

BalusC
- 1,082,665
- 372
- 3,610
- 3,555
-
Your [Servlet 3.0](http://javaserverfaces.java.net/nonav/rlnotes/2.1.0/releasenotes.html) doesn't work anymore. – Buhake Sindi Aug 26 '13 at 14:53