• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Class Not found!

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey!
I am using Tomcat with IIS.. I have a small jsp page in which I am instantiating a bean which is webapps/my_webppas/jsp/ directory..
My class is in webapps/my_webppas/webinf/classes/
directory..
I am getting an error
C:\Program Files\Apache Group\Tomcat 4.1\work\Standalone\localhost\Vijayproject1\jsp\Testingclasses_jsp.java:45: cannot resolve symbol
symbol : class skillsTag
location: class org.apache.jsp.Testingclasses_jsp
skillsTag skillsBean = null;
Any help in this is really appreciated
Regards
Vijay
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If class skillsTag is not in a package, put it in one. Be sure it is place in the WEB-INF/classes/(packagename)/ directory
Bill
reply
    Bookmark Topic Watch Topic
  • New Topic