Re: How to access request & session objects in jsp using struts2 tag

2007-08-31 Thread Chris Pratt
It's JSP 2.0 EL (which isn't specific to JSTL any longer) so you should be able to use it. Otherwise you'll have to look up the analogs in OGNL (I don't have my reference handy). (*Chris*) On 8/30/07, afp <[EMAIL PROTECTED]> wrote: > > np chris! > > Is tat using JSTL? I am not using JSTL in my

Re: How to access request & session objects in jsp using struts2 tag

2007-08-30 Thread afp
np chris! Is tat using JSTL? I am not using JSTL in my app. How can I get it working in/using struts2 tags ?? Arup Chris Pratt wrote: > > OK, sorry, I thought you were talking about the action. If you want > at the attributes you can use ${requestScope.attributename} or > ${sessionScope.att

Re: How to access request & session objects in jsp using struts2 tag

2007-08-30 Thread Chris Pratt
OK, sorry, I thought you were talking about the action. If you want at the attributes you can use ${requestScope.attributename} or ${sessionScope.attributename} and if you need to get at the actual accessors you can use ${pageContext.request.contextPath} (*Chris*) On 8/30/07, Dave Newton <[EMAI