Hi,if you have annotated your servlet like this:@SlingServlet(methods = { "POST" }, paths = "/apps/mycompany/servlets/GenericServlet")the form shoud post to the same same url as in paths, that is "/apps/mycompany/servlets/GenericServlet"so if you would change you "paths" line in the servlet to "/ser...