On Sat, Feb 25, 2006 at 05:04:18PM -0300, Claudio Veas wrote: > > Hello list, I m really new to tomcat ,I have the following problem > > recently > > I tried to resume my practices on JSP on my tomcat server but I seem > to > > have > > a problem and I do not know what it is. Every time I try to run a > JSP with > > a > > <usebean> it shows me this error > > > > > > org.apache.jasper.JasperException: /colors/controlguardo.jsp(1,1) > > org.apache.jasper.compiler.DefaultErrorHandler.jspError
Check to make sure there isn't another, more descriptive exception either before or after that one. If that's really the only error you see in the logs, then you might want to wrap your entire jsp page in a c:catch tag (or <% try { %> and <% } catch (Exception e) { ... } %> code). Tomcat sucks at logging certain types of errors, so if you print out the exception manually you might get some more insight as to what the actual problem is. eric --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]