Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Struts
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Cloud Application Architecture Patterns: Designing, Building, and Modernizing for the Cloud
this week in the
Cloud/Virtualization
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Tim Cooke
paul wheaton
Paul Clapham
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Liutauras Vilda
Saloon Keepers:
Tim Holloway
Carey Brown
Roland Mueller
Piet Souris
Bartenders:
Forum:
Struts
error in struts
haritha hari
Greenhorn
Posts: 29
I like...
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Hai all,
The error coming while running my application
org.apache.jasper.JasperException: Failed to load or instantiate TagExtraInfo class: org.apache.struts.taglib.bean.CookieTei
What should i do....?
Thanq in advance
Saif Asif
Ranch Hand
Posts: 439
I like...
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
hello haritha hari,
kindly Post your web.xml and struts-config.xml
Muhammad Saif Asif Mirza
OCJA(5/6) OCJP(6) OCJWCD(6)
Ankit Dan
Ranch Hand
Posts: 47
I like...
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Check your jar files, if you have included jsp-api-2.0.jar in your jars remove it and then try it, i had encountered such problems too earlier
this problem occurs because of mixture of jar files
Hope this helps
Ankit
haritha hari
Greenhorn
Posts: 29
I like...
posted 12 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Thanq ankit & salf asif......
There is no such type of jar file in my project...
and my web.xml file is as follows......
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>newprjc</display-name> <!-- Action Servlet Configuration --> <servlet> <servlet-name>action</servlet-name> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/struts-config.xml</param-value> </init-param> <init-param> <param-name>mapping</param-name> <param-value>org.apache.struts.action.RequestActionMapping</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <!-- Action Servlet Mapping --> <servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> <!-- Welcome File list --> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <!-- Struts Tag Library Descriptors --> <jsp-config> <taglib> <taglib-uri>/WEB-INF/tlds/struts-html.tld</taglib-uri> <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location> </taglib> </jsp-config> </web-app>
And my struts-config.xml file is...
<?xml version="1.0" encoding="UTF-8"?> <struts-config> <form-beans> </form-beans> <global-exceptions> <exception key="error.global.message" type="java.lang.NullPointerException" path="/null.jsp"/> </global-exceptions> <action-mappings> </action-mappings> </struts-config>
With a little knowledge, a
cast iron skillet
is non-stick and lasts a lifetime.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Tell me why this exception is coming
Error while running application ineclispe
Problem with display tag
error : failed to load or instantiate TagExtraInfo class
MessageTei error
More...