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
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
Jeanne Boyarsky
Ron McLeod
Sheriffs:
Paul Clapham
Liutauras Vilda
Devaka Cooray
Saloon Keepers:
Tim Holloway
Roland Mueller
Bartenders:
Forum:
Struts
error in struts
haritha hari
Greenhorn
Posts: 29
I like...
posted 11 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 11 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 11 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 11 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>
I got this tall by not having enough crisco in my diet as a kid. This ad looks like it had plenty of shortening:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
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...