Get parameters from a Session Bean
Hi all. I need to pass parameters from a SessionBean to an url. This is what I do in the jsp file.
<jsp: scriptlet>
String usuario = this.getSessionBean1().getSeguridad().getUsuario();
String url = "http://192.168.2.111/SistemaSeguridad/Seguridad/iniciar.php?usuarioClave=" + usuario;
response.sendRedirect(url);
</jsp: scriptlet>
The only thing that doesn't work is the "String usuario ..." line. How do I get the usuario parameter from the Session bean?
Thanks.

