• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Where to put .jsp and class file in websphere

 
Ranch Hand
Posts: 126
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I'm using a bean(SpellCheck)in my JSP(SpellPro.jsp). I've kept the bean class in the 'servlets' direstory and jsp in the 'web' directory of my web application direstory. In the JSP I've written Class = "SpellCheck"
It is giving a error
unhandeled error:
"com.sun.jspException unable to compile Class for JSP"
Can anybody help me with how where should I put the bean class, paths etc. There's no problem with the code here as I was practicing the code from a book
Thanks
Neha
 
Ranch Hand
Posts: 42
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Neha
U need to put your .jsp files in document root of your web appliation .This web application should have a pagecompile servlet, which can compile the jsp into the jsp servlet.
For the present u can put the jsp file in the document root of the default_app.
Hope this helps.
Regards
Ram
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic