import javax.servlet.*; import javax.servlet.http.*; import java.io.*; public class Chat extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html"); resp.getWriter().println( "WebChat" + "
Type your name here: " + "

then push (or hit Enter)

" ); } public void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html"); resp.getWriter().println( "

Hello, " + req.getParameter("namefield") + "!

" + " \n" + " \n" + " " + " " ); } }