Mateus Hooker

Greenhorn
+ Follow
since Jul 25, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Mateus Hooker

Hi Raghavan,

This is a classpath issue. The class you are trying to run is not specified in your classpath.

See : http://www.dynamic-apps.com/tutorials/classpath.jsp

Hope this helps
18 years ago
Hi,

Either the <servlet> tags for the Struts action servlet or the <servlet-mapping> tags for the .do extension mapping or both are not present in the web.xml file.

Typos or spelling errors in the struts-config.xml can lead to this error message. For example, missing a slash ("/") on a closing tag can have this effect.

Another element that must be present in the web.xml file is the load-on-startup element. This can be either an empty tag or can have an integer specified that indicates the priority of executing the associated servlet. The higher the number in the load-on-startup tags, the lower its priority.

Another possibility, related to need to use load-on-startup tag, is that precompiling JSPs using Struts can lead to this message as well.

Hope this helps.
18 years ago
String s = "<html>If you're feeling lazy<br>use html markup<br>then play golf...</html>";
JLabel label = new JLabel(s);
18 years ago