Home
Analytics
Unable to load tag handler class "org.eclipse.birt.report.taglib.RequesterTag"
jagadeeshb
i included birt.tld in web-inf/lib/birt.tld
in one of the jsp page i added <birt:parameterPage> and <birt:paramDef> tags for the report parameters
when i click on for that jsp page it shows
org.apache.jasper.JasperException: /****.jsp(16,0) Unable to load tag handler class "org.eclipse.birt.report.taglib.RequesterTag" for tag "birt:parameterPage"
can anyone help for trying out this
Find more posts tagged with
Comments
Arpitg
hey did u get the solution to the problem..
I am facing the same problem..
Please reply if u know the solution to this problem..
I have been trying to find the solution since a long time now..
Thanx in advance..
Kavita_Raw
<blockquote class='ipsBlockquote' data-author="'Arpit'" data-cid="44339" data-time="1236317660" data-date="05 March 2009 - 10:34 PM"><p>
hey did u get the solution to the problem..<br />
<br />
<br />
I am facing the same problem..<br />
<br />
Please reply if u know the solution to this problem..<br />
<br />
I have been trying to find the solution since a long time now..<br />
<br />
<br />
Thanx in advance..<br /></p></blockquote>
Kavita_Raw
<blockquote class='ipsBlockquote' data-author="'Arpit'" data-cid="44339" data-time="1236317660" data-date="05 March 2009 - 10:34 PM"><p>
hey did u get the solution to the problem..<br />
<br />
<br />
I am facing the same problem..<br />
<br />
Please reply if u know the solution to this problem..<br />
<br />
I have been trying to find the solution since a long time now..<br />
<br />
<br />
Thanx in advance..<br /></p></blockquote>
CBR
it is not sufficient to just add the tld file to the web-inf folder (besides that you don't have to necessarily but it into the lib dir). The important thing is that you import the tld using the web.xml of your application. Can you check if there is a import in your web.xml?
Kavita_Raw
<blockquote class='ipsBlockquote' data-author="'CBR'" data-cid="74991" data-time="1300957905" data-date="24 March 2011 - 02:11 AM"><p>
it is not sufficient to just add the tld file to the web-inf folder (besides that you don't have to necessarily but it into the lib dir). The important thing is that you import the tld using the web.xml of your application. Can you check if there is a import in your web.xml?<br /></p></blockquote>
<br />
Thanks 4 the response....i am copying my web.xml file here.plz give me rectification....<br />
<br />
<?xml version="1.0" encoding="UTF-8"?><br />
<web-app xmlns:xsi="<a class='bbc_url' href='
http://www.w3.org/2001/XMLSchema-instance'>http://www.w3.org/2001/XMLSchema-instance"</a>
; xmlns="<a class='bbc_url' href='
http://java.sun.com/xml/ns/javaee'>http://java.sun.com/xml/ns/javaee"</a>
; xmlns:web="<a class='bbc_url' href='
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd'>http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"</a>
; xsi:schemaLocation="<a class='bbc_url' href='
http://java.sun.com/xml/ns/javaee'>http://java.sun.com/xml/ns/javaee</a>
; <a class='bbc_url' href='
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd'>http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"</a>
; id="WebApp_ID" version="2.5"><br />
<display-name>Cabin Allocation System</display-name><br />
<servlet><br />
<servlet-name>action</servlet-name><br />
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class><br />
<init-param><br />
<param-name>debug</param-name><br />
<param-value>0</param-value><br />
</init-param><br />
<init-param><br />
<param-name>detail</param-name><br />
<param-value>0</param-value><br />
</init-param><br />
<init-param><br />
<param-name>config</param-name><br />
<param-value>/WEB-INF/config.xml</param-value><br />
</init-param><br />
<load-on-startup>1</load-on-startup><br />
</servlet><br />
<servlet-mapping><br />
<servlet-name>action</servlet-name><br />
<url-pattern>*.anu</url-pattern><br />
</servlet-mapping><br />
<welcome-file-list><br />
<welcome-file>login.jsp</welcome-file><br />
</welcome-file-list><br />
<error-page><br />
<error-code>404</error-code><br />
<location>/Page_Not_Found.jsp</location><br />
</error-page><br />
<servlet><br />
<description></description><br />
<display-name>hello</display-name><br />
<servlet-name>hello</servlet-name><br />
<servlet-class>a1.hello</servlet-class><br />
</servlet><br />
<servlet-mapping><br />
<servlet-name>hello</servlet-name><br />
<url-pattern>/hello</url-pattern><br />
</servlet-mapping><br />
<session-config><br />
<session-timeout>30</session-timeout><br />
</session-config><br />
<servlet><br />
<description></description><br />
<display-name>EditServlet</display-name><br />
<servlet-name>EditServlet</servlet-name><br />
<servlet-class>cabin.EditServlet</servlet-class><br />
</servlet><br />
<servlet-mapping><br />
<servlet-name>EditServlet</servlet-name><br />
<url-pattern>/search_req</url-pattern><br />
</servlet-mapping><br />
<servlet><br />
<description></description><br />
<display-name>GetMembers</display-name><br />
<servlet-name>GetMembers</servlet-name><br />
<servlet-class>cabin.GetMembers</servlet-class><br />
</servlet><br />
<servlet-mapping><br />
<servlet-name>GetMembers</servlet-name><br />
<url-pattern>/GetMembers</url-pattern><br />
</servlet-mapping><br />
<servlet><br />
<description></description><br />
<display-name>GetHod</display-name><br />
<servlet-name>GetHod</servlet-name><br />
<servlet-class>cabin.GetHod</servlet-class><br />
</servlet><br />
<servlet-mapping><br />
<servlet-name>GetHod</servlet-name><br />
<url-pattern>/GetHod</url-pattern><br />
</servlet-mapping><br />
</web-app>