Dispatch request to a page component from Servlet
Hi,
How to I dispatch a request to a page component (JSP)? I get the following error javax.jcr.nodetype.ConstraintViolationException: no matching property definition found for {}country. I don't want the country value to be persisted.
The code I used to dispatch from the servlet is:
RequestDispatcher dispatcher = request.getRequestDispatcher("/content/mycompany/cars/audi/a4.html");
dispatcher.forward(request, response);
Thanks you.
Cheers,
Viren.