RE: accessing bean properties in a jsp

2005-01-10 Thread John McCosker
BeanUtils.copyProperties(sb, scv); session.setAttribute("cookieSession", sb); request.setAttribute("clientSession",sb); Hopefully this help. Shed. -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 6:49

RE: accessing bean properties in a jsp

2005-01-10 Thread Hollaway, Shedrick L CIV TRIREFFAC
session.setAttribute("cookieSession", sb); request.setAttribute("clientSession",sb); Hopefully this help. Shed. -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: Monday, January 10, 2005 6:49 To: 'Struts Users Mailing List' Subject: accessin

accessing bean properties in a jsp

2005-01-10 Thread John McCosker
Hi, I am a struts newbie, I am trying to access a bean in my jsp page like this, I validate and then set the bean in my action, package com.neo.five.ereports; import org.apache.struts.action.Action; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping;