Re: Problem while using

2006-11-13 Thread santas
Thank You All for your great support,help and valueable time finally it is working now, today i learned a lot from you all about tag Thank You once again Puneet Lakhina wrote: > > On 11/13/06, Eider Iturbe <[EMAIL PROTECTED]> wrote: >> >> Hi, >> >> You mustn´t add an ArrayList in request scop

RE: Problem while using

2006-11-13 Thread santas
action class. > -Original Message- > From: santas [mailto:[EMAIL PROTECTED] > > Sent: Monday, November 13, 2006 5:33 PM > To: user@struts.apache.org > Subject: RE: Problem while using > > > HI > > i

Re: Problem while using

2006-11-13 Thread Martin Gainty
IL PROTECTED] Sent: Monday, November 13, 2006 5:33 PM To: user@struts.apache.org Subject: RE: Problem while using HI i tried what u said but stil the same error is shown to me i have set the list with key "users" then i first check

RE: Problem while using

2006-11-13 Thread Sunita Ramchandra Shukla
use to fetch it. 6. AtLast debug if any problem using scriplet. Try it. -Original Message- From: Eider Iturbe [mailto:[EMAIL PROTECTED] Sent: Monday, November 13, 2006 6:21 PM To: Struts Users Mailing List Subject: Re: Problem while using Hi again, Instead of using ArrayList uservoList

Re: Problem while using

2006-11-13 Thread Eider Iturbe
Hi again, Instead of using ArrayList uservoList = new ArrayList(); request.setAttribute("listvo",uservoList); you have to use this: *java.util.Collection* uservoList = new ArrayList(); request.setAttribute("listvo",uservoList); Regards, -- Eider On 11/13/06, Puneet Lakhina <[EMAIL PROTECTED

Re: Problem while using

2006-11-13 Thread Puneet Lakhina
On 11/13/06, Eider Iturbe <[EMAIL PROTECTED]> wrote: Hi, You mustn´t add an ArrayList in request scope, you have to add a Collection of objects of the class "uservo" . Dont really know what you are trying to say. An arraylist would be a collection of uservo. ArrayList uservoList = new Array

RE: Problem while using

2006-11-13 Thread Sunita Ramchandra Shukla
2006 5:33 PM To: user@struts.apache.org Subject: RE: Problem while using HI i tried what u said but stil the same error is shown to me i have set the list with key "users" then i first check and again i got same error is there any ot

Re: Problem while using

2006-11-13 Thread Eider Iturbe
Hi, You mustn´t add an ArrayList in request scope, you have to add a Collection of objects of the class "uservo" . Regards, -- Eider On 11/13/06, santas <[EMAIL PROTECTED]> wrote: HI i tried what u said but stil the same error is shown to me i have set the list with key "users" then i fir

Re: Problem while using

2006-11-13 Thread Nuwan Chandrasoma
try to use the scope attribute of the iterator tag and see, eg: scope="request"> scope="session"> Thanks, Nuwan. - Original Message - From: "santas" <[EMAIL PROTECTED]> To: Sent: Monday, November 13, 2006 12:03 PM Subject: RE: Proble

RE: Problem while using

2006-11-13 Thread santas
HI i tried what u said but stil the same error is shown to me i have set the list with key "users" then i first check and again i got same error is there any other solution to this Sunita Ramchandra Shukla wrote: > > > Hi, > Try this . > >

RE: Problem while using

2006-11-13 Thread Sunita Ramchandra Shukla
Hi, Try this . Here name attribute should be what you have set the key in request and specify the location of your class in type w.r.t web application. Rest is fine. It should work. -Original Message- From: santas [mailto:[EMAIL PROTECTED] Sent: Monday, November 13, 2006 4:07 PM To: use