RE: The value for the useBean class attribute... is invalid

2006-10-11 Thread Caldarale, Charles R
> From: Aynalem, Seblewengel (Trawick) > [mailto:[EMAIL PROTECTED] > Subject: RE: The value for the useBean class attribute... is invalid I don't think any of the following will resolve your immediate problem, but there are a couple of odd things in your app deployment and configu

RE: The value for the useBean class attribute... is invalid

2006-10-11 Thread Aynalem, Seblewengel (Trawick)
esday, October 11, 2006 8:30 AM To: Tomcat Users List Subject: Re: The value for the useBean class attribute... is invalid Well... the last thought I have is to check file permissions to be sure the tomcat service has read access to the class. Seems like if that was the case there would be some

Re: The value for the useBean class attribute... is invalid

2006-10-11 Thread David Smith
10, 2006 10:35 PM To: Tomcat Users List Subject: Re: The value for the useBean class attribute... is invalid Right. The issue is server side access to the class, not client side through httpd. The following link seems directly related to the OP's issue: http://forum.java.sun.com/th

RE: The value for the useBean class attribute... is invalid

2006-10-11 Thread Aynalem, Seblewengel (Trawick)
al Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 10:35 PM To: Tomcat Users List Subject: Re: The value for the useBean class attribute... is invalid Right. The issue is server side access to the class, not client side through httpd. The following

Re: The value for the useBean class attribute... is invalid

2006-10-10 Thread David Smith
Right. The issue is server side access to the class, not client side through httpd. The following link seems directly related to the OP's issue: http://forum.java.sun.com/thread.jspa?threadID=567258&messageID=2944921 Essentially the class must be a valid bean declared public with a default (n

Re: The value for the useBean class attribute... is invalid

2006-10-10 Thread Mark Thomas
Martin Gainty wrote: > David- > > ..he could also have execute/read permissions turned off in .htaccess > > M- Martin, you are talking nonsense and confusing the issue. 1) .htaccess is an httpd configuration feature that does not exist in Tomcat 2) The OP made no mention of using httpd in his

Re: The value for the useBean class attribute... is invalid

2006-10-10 Thread Martin Gainty
6 4:24 PM Subject: Re: The value for the useBean class attribute... is invalid > Someone else had this problem -- essentially amounts to a > ClassNotFoundException. Can you confirm the class really exists in a > place accessible to the webapp, ie > WEB-INF/classes/ISOTracking/Sessio

RE: The value for the useBean class attribute... is invalid

2006-10-10 Thread Aynalem, Seblewengel (Trawick)
Yes SessionBean.class is in the WEB-INF/classes/ISOTracking directory. Any other hint? Thanks. -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 4:25 PM To: Tomcat Users List Subject: Re: The value for the useBean class attribute... is

Re: The value for the useBean class attribute... is invalid

2006-10-10 Thread David Smith
Someone else had this problem -- essentially amounts to a ClassNotFoundException. Can you confirm the class really exists in a place accessible to the webapp, ie WEB-INF/classes/ISOTracking/SessionBean.class? --David Aynalem, Seblewengel (Trawick) wrote: I am getting the following error..