Umm, you'll have to post the whole exception, as the JasperException is wrapping the underlying one. (especially the "root cause" bit). Cheers,
james > -----Original Message----- > From: Graham Reeds [mailto:[EMAIL PROTECTED] > Sent: 05 June 2003 11:49 > To: Tomcat Users List > Subject: Re: Tomcat bug? WinXp, IE6, Tomcat 4.1.24, JSPTags > > > Okay this the relevant section of my taglib.tld file: > > <tag> > <name>header</name> > <tagclass>tagext.HeadTag</tagclass> > <bodycontent>JSP</bodycontent> > <info>Simple Example</info> > <attribute> > <name>pageTitle</name> > <required>true</required> > <rtexprvalue>true</rtexprvalue> > </attribute> > </tag> > > the use of the tag in my jsp file: > <siteTags:header pageTitle="Server Administration" /> > > the getter and setter code: > > String pageTitle; > // getter > //public String getPageTitle() > public String getpageTitle() > { > return pageTitle; > } > > // setter > //public void setPageTitle(String pageTitle) > public void setpageTitle(String pageTitle) > { > this.pageTitle = pageTitle; > return; > } > > The error that it produces (cropped for berevity). If you would like the > code then I can email you it - I wouldn't want to post the entirety to the > list: > > HTTP Status 500 - > type Exception report > message > description The server encountered an internal error () that prevented it > from fulfilling this request > exception > org.apache.jasper.JasperException > at > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrap > per.java:2 > 54) > at > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295) > at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(A > pplication > FilterChain.java:247) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(Applicati > onFilterCh > ain.java:193) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapp > erValve.ja > va:256) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValveCon > text.invok > eNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline. > java:480) > > -- > > Graham Reeds, > [EMAIL PROTECTED] | http://omnieng.co.uk > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
