Bueno, tengo la siguiente estructura de archivos:
Código:
el problema es que cuando intento llamar una clase desde una jsp que tengo dentro de "en" (aplicacion/en/) en mi servidor (Tomcat 6) local funciona correctamente pero en el servidor web (Tomcat 6) no me funciona no se por que?- Aplicacion - - jsp's - - en - - - jsp's - - WEB-INF - - - lib - - - - xxx.jar - - - classes
en la jsp donde llamo la clase tengo:
Código:
pero como ya les comente no funciona y me genera el error:<%@ page import="Util.Mail" %> <%! Mail mail = new Mail();%> ...html... <% mail.Contactar (); %>
Código:
org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: 6 in the generated java file Only a type can be imported. Util.Mail resolves to a package An error occurred at line: 2 in the jsp file: /contact.jsp Mail cannot be resolved to a type 1: <%@ page import="Util.Mail" %> 2: <%! Mail mail = new Mail();%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4: <html xmlns="http://www.w3.org/1999/xhtml"> 5: <head> An error occurred at line: 2 in the jsp file: /contact.jsp Mail cannot be resolved to a type 1: <%@ page import="Util.Mail" %> 2: <%! Mail mail = new Mail();%> 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 4: <html xmlns="http://www.w3.org/1999/xhtml"> 5: <head> An error occurred at line: 52 in the jsp file: /contact.jsp mail cannot be resolved
Haber si alguien ya le ha pasado esto y me puedan ayudar!
Gracias...