I have this object inside a body of my JSP pages.
'<%
String stato = (String) session.getAttribute("stato");
Utente u = (Utente) session.getAttribute("utente");
UtenteDAO uDAO = new UtenteDAO();
PagamentoDAO pDAO = new PagamentoDAO();
ProdottoDAO prDAO = new ProdottoDAO();
OrdiniDAO oDAO = new OrdiniDAO();
DatiFisiciDAO dfDAO = new DatiFisiciDAO();
int numClienti = uDAO.ContaClienti();
Vector<Utente> utenti = uDAO.getAllClienti();
Vector<Pagamento> pagamenti = pDAO.getAll();
Vector<Prodotto> magliette = prDAO.getMagliette();
Vector<Prodotto> barrette = prDAO.getBarrette();
Vector<Prodotto> integratori = prDAO.getIntegratori();
Vector<Ordini> ordini = oDAO.getAll();
Vector<DatiFisici> dati = dfDAO.getAll();
%>'
I want to invoke the java vector called "utenti" in a Javascript function. Is it possible to realize that?