Re: JavaBeans

2002-05-24 Thread Phillip Morelock
On 5/24/02 7:39 AM, "Eric Everman" <[EMAIL PROTECTED]> wrote: > Could this be a package issue as well (see Tomcat can't find my > classes)? Classes places in the /classes folder must be in nested folders > matching the package name. When you reference this class, you must use the > package name

Re: JavaBeans

2002-05-24 Thread Eric Everman
Could this be a package issue as well (see Tomcat can't find my classes)? Classes places in the /classes folder must be in nested folders matching the package name. When you reference this class, you must use the package name, for instance: Eric At 02:30 AM 5/24/2002, you wrote: >I hav

Re: JavaBeans

2002-05-24 Thread Charles Baker
--- Anibal Constante Brito <[EMAIL PROTECTED]> wrote: > I have the same problem of other, I read a some > tutorial too and... > public class UserData { > String username; > String email; > int age; > > public void setUsername( String value ) > {... > I put in UserData.java an

RE: javabeans with jsp

2001-06-28 Thread Jann VanOver
A good reference is http://java.sun.com/j2ee/tutorial/doc/JSPBeans.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 4:07 PM To: [EMAIL PROTECTED] Subject: javabeans with jsp I don't know where exactly the javabean class goes in or

Re: javabeans with jsp

2001-06-20 Thread Daniel de Almeida Alvares
You can put the bean at the WEB-INF/classes directory of your application ! Regards Daniel ___ Daniel de Almeida Alvares Santos - SP - Brasil [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 20, 2001 8:07 PM

RE: JavaBeans

2001-05-29 Thread Bhat, Mahesh
Hi Place the bean class either in the Web-inf/classes directory (along with the package directory structure) or package it in a jar and place it in the Web-Inf/lib directory. regards -Original Message- From: Kavi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 7:13 AM To: [EMAI

RE: JavaBeans

2001-05-28 Thread me
Hi Kavi, JavaBeans must be placed in the Web-Inf/classes directory of your webapp as long as they don't belong to a package and you don't set a classpath. Else you must create a directory structure similar to your package name, i.e. package: yourpack.com --> web-inf/classes/com/yourpak. Hope thi