Question on storing bean in request context

2003-11-06 Thread Brice Ruth
Good morning (again) I have an Action that is retrieving a javabean object from my database (via iBATIS, thank you very much :)) and I need to store that bean somewhere where a Tile can access it. What I'm doing, is storing it in the request context (request.setAttribute(item,item)) and then

Re: Question on storing bean in request context

2003-11-06 Thread Kris Schneider
You shouldn't need jsp:useBean. What happens with just: c:out value=${requestScope.item.productName}/ Quoting Brice Ruth [EMAIL PROTECTED]: Good morning (again) I have an Action that is retrieving a javabean object from my database (via iBATIS, thank you very much :)) and I need to store

Re: Question on storing bean in request context

2003-11-06 Thread Brice Ruth
Um (embarrassed) ... I forgot to import the JSTL core taglib ... (/me hides head) Kris Schneider wrote: You shouldn't need jsp:useBean. What happens with just: c:out value=${requestScope.item.productName}/ Quoting Brice Ruth [EMAIL PROTECTED]: Good morning (again) I have an Action that

RE: Question on storing bean in request context

2003-11-06 Thread Wendy Smoak
Brice Ruth wrote: What I'm doing, is storing it in the request context request.setAttribute(item,item)) and then my Action returns a forward that is mapped to a tile definition. That tile definition assembles a collection of tiles (which is all working) - the tile that needs to access the