• 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

my First Logon Page

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm doing my first attempt at creating a logon page. My main objective is to check the Microsoft Access DB for user credentials. But the thing is, I'm not even at this point yet because I can't load my DBBean. The error is


ProcessLogon(6).jsp: The value for the useBean class attribute DBClientBean is invalid.



Any ideas what might be causing this problem?


My pathetic code is below.
I have the Logon.jsp Page.. just a form with 2 fields


This data gets sent to the ProcessLogon.jsp



And the ProcessLogon.jsp page will be using this bean (eventually when I can get it to work)



Any ideas why I'm getting the error listed above? Must I include a (value="") inside my usebean tag??


 
Ranch Hand
Posts: 874
Android VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Eric,

DBClientBean should be valid Java Bean to be used in jsp:usebean.
1) No argument empty construtor
2) setter and getter methods following bean standards
reply
    Bookmark Topic Watch Topic
  • New Topic