> add(new Include("includedJSP", "user/include.jsp"));
>
> Using the this form always returns a null user object because the underlying
> code in the Include class opens a new URL connection that has a different
> session, so my user object is not available.

I think you should be able to get into the same session by including a
JSESSIONID
parameter in your jsp url, like "user/include.jsp;jsessionid=<your
session id here>"

Another possibility would be to have the browser call the jsp url,
maybe with an iframe
or something like that...

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to