I'm transforming some JSP pages to JSF ones and this is my problem:
In JSP i have this line:
<form name="form" action="<%=request.getContextPath()%>/LoginServlet" method="post">
As you can see /LoginServlet
is my Servlet where all login functions are done. So how I can implement that in JSF page?