users
[Top] [All Lists]

RE: [cinjug-users] Struts Logic Tag Question

To: <users@xxxxxxxxxx>
Subject: RE: [cinjug-users] Struts Logic Tag Question
From: "Robert Casto" <robert@xxxxxxxxxxxxx>
Date: Wed, 29 Sep 2004 15:23:29 -0400
Delivered-to: mailing list users@cinjug.org
In-reply-to: <02CC1C69235CEC4CB50F7BEB0D7CCA97B63366@napmail1>
Mailing-list: contact users-help@cinjug.org; run by ezmlm
Thread-index: AcSmV9PtpJZwxtuTScOF1VfDEt9RbAAAdZdQ

Brian,

 

There might be a timeout associated with the server or the client. Look to see if there is something stopping the transaction before it is done.

 

The other thing to think about is whether the browser is handling it properly. I have seen this before but it was a long time ago.

Robert Casto
Phone: 513-755-2221
Mobile: 614-406-7979
robert@xxxxxxxxxxxxx

 

 


From: Brian Engel [mailto:Brian.Engel@xxxxxxxxxxxx]
Sent: Wednesday, September 29, 2004 3:09 PM
To: users@xxxxxxxxxx
Subject: [cinjug-users] Struts Logic Tag Question

 

I am having a strange problem I can't seem to get to the bottom of...

 

Basically I have a bean that contains a Vector of "UserData" objects. I am simply trying to iterate thru them and display all of the data.

 

The problem is the page just seems to quit processing when it makes it about 10 names from the bottom. It doesn't seem to matter how many objects (users) are in the Vector.

 

i.e. my JSP looks like this.

 

<logic:iterate id="userData" name="UserDataForm" property="names" >

<tr>

<td>

<jsp:getProperty name="userData" property="lastName" />

</td>

<td>

<jsp:getProperty name="userData" property="firstInitial" />

</td>

<td>

<jsp:getProperty name="userData" property="city" />

</td>

<td>

<jsp:getProperty name="userData" property="state" />

</td>

<td>

<jsp:getProperty name="userData" property="winDate" />

</td>

</tr>

</logic:iterate>

 

The page just quits processing towards the very end of the user list. It doesn't seem to matter if there are 4000 or 250 names (objects) that it iterates over - it just stops and returns the page incomplete.

 

Hope this makes sense - BTW I am using Tomcat as the app server.

 

I'd appreciate any help you can offer.

 

 

<Prev in Thread] Current Thread [Next in Thread>