In this small servlet I am entering the values in hard and I would like the hard values to have parameters so that the information can be stored since it would be on the client's side where this information is entered.
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
InsertarPublicacion ObtenerIdRedSh= new InsertarPublicacion(pool);
String id=ObtenerIdRedSh.procedure("Nota:De Juan Barragan") ;
response.getOutputStream().write(id.getBytes());
}