I have a servlet. I am new to java. But I need to run the servlet. It has two methods:
public void doGet (HttpServletRequest request, HttpServletResponse response) {...}
and
public void doPost HttpServletRequest request, HttpServletResponse response) {...}
What steps do I need to take to run the servlet? (I have tomcat 7, eclipse SE installed with the tomcat plugin, netBeans)
source share