Hi all, I am writing a custom interpreter and it renders an html page which is consisted of a html form as the result. I also have written the servlet to handle the request from that html page and added it to the WEB-INF/web.xml file. But when I trigger the action, it gives me a 404 error mentioning that it's impossible to find the relevant servlet.
The servlet is contained in a module outside of the zeppelin-web app module. (inside the zeppelin project of course) Here are the entries I added to my web.xml *<servlet> <servlet-name>UploadServlet</servlet-name> <servlet-class>org.apache.zeppelin.cep.servlets.FileUploadServlet</servlet-class></servlet><servlet-mapping> <servlet-name>UploadServlet</servlet-name> <url-pattern>/UploadServlet</url-pattern></servlet-mapping>* Could you please let me know how to resolve this issue? Thanks and Regards! -- *Minudika Malshan*
