Hi Manoj... appreciate your response. I have an RPC request that
fetches the list from database....before I send back a response, I get
the current session and add my list as
getThreadLocal().getSession().addAttribute("attributeName",
activityList); .... inside the onSuccess() method, I am making another
RPC call that does some more processing on the server side,...I am
relying on the session attribute previously set. However, I am getting
a new session when I try to get the session attribute using --
getThreadLocal().getSession().getAttribute("attributeName").... I did
notice that it does not happen locally when I deploy it on a resin
server .... I feel that some session config on the server could be the
reason for not counting the jsessionid that comes back with RPC
payload.On May 23, 1:44 pm, Manoj <[email protected]> wrote: > I haven't faced an issue on this regard. How do you set the bean in > the session? > > On May 22, 10:20 am, DK <[email protected]> wrote: > > > I have a session attribute thats set in the session when a user logs > > in (ex profile bean). once logged in, I have an RPC call to a remote > > service that tries to pull information from this session bean and do > > additional work. I noticed that a new session id was being generated > > when I make the RPC call....which means the session attribute I need > > is no longer in the current session. How do I read session specific > > information using RPC calls ? > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google Web Toolkit" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group > > athttp://groups.google.com/group/google-web-toolkit?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
