Re: problem with javaBean and jsp

2001-03-22 Thread cupid1
one of our .class file, in case we are not in house host?. - Original Message - From: "Nishit Trivedi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 22, 2001 9:54 AM Subject: Re: problem with javaBean and jsp > it a tomcat behaviour too.

Re: problem with javaBean and jsp

2001-03-22 Thread Nishit Trivedi
it a tomcat behaviour too...i am using tomcat 3.2.1 Nishit -Original Message- From: cupid1 [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 21, 2001 11:01 PM To: [EMAIL PROTECTED] Subject: Re: problem with javaBean and jsp It makes sense now. thanks. Is this only the jws behavior or

Re: problem with javaBean and jsp

2001-03-22 Thread anurag dewan
hi, I was not able to find the set property. U have to first set the proprty before getting it. use the setProperty directive or call the func. using scriplets. Hope it helps -anurag --- cupid1 <[EMAIL PROTECTED]> wrote: > Hello every one, > > Please help with a small problem. I have this jsp >

Re: problem with javaBean and jsp

2001-03-21 Thread Rob L'Estrange
tionality. Rob - Original Message - From: "cupid1" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 8:00 PM Subject: Re: problem with javaBean and jsp > It makes sense now. thanks. Is this only the jws behavior or tomcat's too? > > -

Re: problem with javaBean and jsp

2001-03-21 Thread cupid1
It makes sense now. thanks. Is this only the jws behavior or tomcat's too? - Original Message - From: "Rob L'Estrange" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 22, 2001 4:34 PM Subject: Re: problem with javaBean and jsp >

Re: problem with javaBean and jsp

2001-03-21 Thread Rob L'Estrange
eload your support class. Rob - Original Message - From: "cupid1" <[EMAIL PROTECTED]> To: "Rob L'Estrange" <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 7:17 PM Subject: Re: problem with javaBean and jsp > Rob, > > I restarted the serve

Re: problem with javaBean and jsp

2001-03-21 Thread cupid1
Here is my jsp code. Hello, ! here is the bean. package hello; public class NameHandler { private String username; public NameHandler() { username = "John Doe"; } public void setUsername( String name ) { username = name; } public String getUsername() { return username; }

Re: problem with javaBean and jsp

2001-03-21 Thread Josh Holtzman
Can we get a look at you're jsp code? >From: cupid1 <[EMAIL PROTECTED]> >Reply-To: A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: problem with javaBean and jsp >Date: Wed, 21 Mar 2001 20:45:45 -0500 > >Hello every one, > >Pl