• 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

Newbie question on JSP error in my JSF dynamic web application

 
Ranch Hand
Posts: 387
Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am working in RAD 7.5.5.1 and Websphere v7.0.0.9.

I have a VERY simple JSF dynamic web application and I've taken the defaults in the web.xml file and when I execute in my browser http://localhost:9081/CSC-ARXfer/faces/index.jsp I get the following error in my console and my application is defaulting to my error.jsp page:

7/27/10 8:16:32:538 CDT 0000001a webapp E com.ibm.ws.webcontainer.webapp.WebApp logServletError SRVE0293E: Servlet Error-[/index.jsp]: com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /index.jsp:
/index.jsp(34,61) --> JSPG0123E: Unable to locate tag attribute info for tag attribute name.

If I'm reading the error above correctly the error occurred on LINE 34 COLUMN 61 in my index.jsp page but LINE 34 reads as follows:



I have my @taglib defined at the top of my page as follows:



Any suggestions/direction would be greatly appreciated.

Thank you.
 
Melinda Savoy
Ranch Hand
Posts: 387
Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The issue was that "name" was an invalid attribute on the tag and that was the issue. Problem resolved. Thanks anyway.
 
reply
    Bookmark Topic Watch Topic
  • New Topic