About this issue, I can say that if I remove the following code from my page, it works fine.So, what is wrong with this code?
<logic:iterate name="buscaResp" id="item"> <table> <tbody> <tr> <td> <strong>Nome:</strong> <bean:write name="item" property="nome"/><br> <strong>Rua:</strong> <bean:write name="item" property="rua"/><br> <strong>Número:</strong> <bean:write name="item" property="numero"/><br> <strong>Bairro:</strong> <bean:write name="item" property="bairro"/><br> <strong>Data de nascimento:</strong> <bean:write name="item" property="dataNascimento"/> </td> <bean:define id="idprop" name="item" property="id" /> <td> <html:link action="/adicionaResponsavelEncontrado" paramId="id" paramName="idprop">Selecionar</html:link> </td> </tr> </tbody> </table> <hr> </logic:iterate> buscaResp is the name of the bean, which is a List itself (i do a request.getSession().setAttribute("buscaResp", obj)), where obj is a java.util.List. The action /adicionaResponsavelEncontrado is mapped correctly. A similar iterator works in another page. what is wrong? Thanks Otávio Augusto On Sat, 10 Jan 2004 23:52:38 -0300 Otávio Augusto <[EMAIL PROTECTED]> wrote: > I have a jsp which sometimes is rendered, and sometimes it simply isn't. it is > correctly mapped. it is very similar to another one which works fine...I just can't > fine the reason for that. The code is simple and similar to another one which works. > If someone has any explanation, that would be great (I imagine I have a leak of ram > memory). > > thanks in advance > > Otávio Augusto > > --------------------------------------------------------------------- > 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]