package hoge;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
* @author user
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public class Hellosrv extends HttpServlet {

public void doPost(HttpServletRequest arg0, HttpServletResponse arg1)
throws ServletException, IOException {

arg1.getWriter().println("Hello!???");
System.out.println("testest!");

}

}