> My jsp is just refreshing the actual page with some variables
> actualized, because 2 of the 3 submits I have don't work yet. The ideia
> is to acces in the other 2 submits some methods is a java class(a
> servlet maybe, I haven't implemented it yet) to access a databse and
> return some objects from there.
You should probably have your form submit to a servlet. Then, in the
doGet() or doPost() method of the servlet, you can determine what
method to call, and just call it. Then redirect to your JSP from there.