Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Won't Fix
-
Affects Version/s: 1.6DR#4
-
Fix Version/s: 1.6DR#5
-
Component/s: None
-
Labels:None
-
Environment:Windows XP / Tomcat 5.5.17 / Liferay 4.3.0 (pre-release)
Description
Line 51 of BlockingServlet.java has this line:
dispatcher = servletConfig.getServletContext().getNamedDispatcher("Persistent Faces Servlet");
But it has a type in the servlet name. Should beL
dispatcher = servletConfig.getServletContext().getNamedDispatcher("Main Servlet");
This was revealed by a failing <ice:inputFile/> file upload.
Neil
dispatcher = servletConfig.getServletContext().getNamedDispatcher("Persistent Faces Servlet");
But it has a type in the servlet name. Should beL
dispatcher = servletConfig.getServletContext().getNamedDispatcher("Main Servlet");
This was revealed by a failing <ice:inputFile/> file upload.
Neil
This doesn't look right. "Main Servlet" is not registered in web.xml file thus you cannot look it up. Is there a related bug for <ice:inputFile> problem?