try to use the scope attribute of the iterator tag and see,

eg:

<logic:iterate id="listvo" name="users" type="com.user.uservo" scope="request">

<logic:iterate id="listvo" name="users" type="com.user.uservo" scope="session">

Thanks,

Nuwan.


----- Original Message ----- From: "santas" <[EMAIL PROTECTED]>
To: <user@struts.apache.org>
Sent: Monday, November 13, 2006 12:03 PM
Subject: RE: Problem while using <logic:iterate>



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
<logic:present name="users">
<table>
<tr>
  <th></th>
   <th></th>
</tr>
     <logic:iterate id="listvo" name="users" type="com.user.uservo">
<tr>
<td>
    <bean:write name="listvo" property="firstname"/>
 </td>
<td>
    <bean:write name="listvo" property="lastname"/>
 </td>
</tr>
</table>
</logic:present>


and  again i got same error
is there any other solution to this





Sunita Ramchandra Shukla wrote:


Hi,
Try this .
<logic:iterate id="listvo" name="userList" type="com.user.UserModel">
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: user@struts.apache.org
Subject: Problem while using <logic:iterate>


hi,

I am having one problem while trying to use <logic:iterate> tag inmy jsp

i am using it as follows:-
<logic:iterate id ="listvo" name="users">
<tr>
<td>
<bean:write  name="listvo" property="firstname"/>
</td>
</tr>
</logic:iterate>

what i am doing is setting one ArrayList in request scope and in that
arraylist i am adding one object of

a class "uservo" in which there are some properties
like:-firstname,lastname
etc of user

what i am getting error is that:--
org.apache.jasper.JasperException: Cannot find bean: "listvo" in any
scope

Please give me any possible solutions
thank you.



--

View this message in context:
http://www.nabble.com/Problem-while-using-%3Clogic%3Aiterate%3E-tf262135
8.html#a7314626
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------------------------------
This message, including any attachments, contains confidential information
intended for a specific individual and purpose, and is intended for the
addressee only. Any unauthorized disclosure, use, dissemination, copying,
or distribution of this message or any of its attachments or the
information contained in this e-mail, or the taking of any action based on
it, is strictly prohibited. If you are not the intended recipient, please
notify the sender immediately by return e-mail and delete this message.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
View this message in context: http://www.nabble.com/Problem-while-using-%3Clogic%3Aiterate%3E-tf2621358.html#a7315767
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to