Re: Struts2 portlet bug found

2009-07-27 Thread Tracy12
For some reason whole application looks very slow, I might choose the other approach where do jsp code changes to access raw Portlet Session. Doest this mean I have to use > Hi Nils-H, > > Thanks for the reply, unfortunately in production we got lot of > functionalities written with #session.s

Re: Struts2 portlet bug found

2009-07-26 Thread Tracy12
Hi Nils-H, Thanks for the reply, unfortunately in production we got lot of functionalities written with #session.studentId etc, in the jsps to access PORTLET APPLICATION SCOPE variables. Those references are not only but What is your opinion regarding this, practically I prefer th

RE: Struts2 portlet bug found

2009-07-22 Thread Kofford, C Todd
Since this deals with struts and uportal I have copied the uportal user group in this response too. I had a similar problem. See email thread below: http://www.mail-archive.com/user@struts.apache.org/msg87615.html I was simply using the session (map) object from a SessionAware action class and n

Re: Struts2 portlet bug found

2009-07-21 Thread Nils-Helge Garli Hegvik
Ah, sorry, I think I misunderstood As they say in the uPortal forum, this is probably due to the older version of uPortal returning all session attributes regardless of scope. When this was fixed, you need to specify the correct scope to retrieve application scoped attributes, but they are sti

Re: Struts2 portlet bug found

2009-07-21 Thread Nils-Helge Garli Hegvik
Does it work if you access the session "raw" (get the session and do session.getAttribute("studentId", PortletSession.APPLICATION_SCOPE)? Have you tried deploying to a different portlet container such as jboss portal or just plain pluto? I assume that the resources you're sharing session between ar