Re: Can't access session id

2004-03-04 Thread Frank Burns
[EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, March 04, 2004 1:12 AM Subject: Re: Can't access session id You need to use the pageContext implicit object. session id = c:out value=${pageContext.request.session.id} / -Tim Frank Burns wrote: I need to access

RE: Can't access session id

2004-03-03 Thread Ed Bicker
I think the out object is not referenced correctly. The out object writes into the output stream to the client, but this is a buffered version of the java.io.PrintWriter class and is of type javax.servlet.jsp.JspWriter. I believe the c:out is pointing to the wrong value or the sessionScope field

Re: Can't access session id

2004-03-03 Thread Frank Burns
So what is the best way to access the session id? - Original Message - From: Ed Bicker [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 10:25 PM Subject: RE: Can't access session id I think the out object is not referenced correctly. The out

Re: Can't access session id

2004-03-03 Thread Justin Ruthenbeck
the session id? - Original Message - From: Ed Bicker [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, March 03, 2004 10:25 PM Subject: RE: Can't access session id I think the out object is not referenced correctly. The out object writes into the output stream

Re: Can't access session id

2004-03-03 Thread Tim Funk
You need to use the pageContext implicit object. session id = c:out value=${pageContext.request.session.id} / -Tim Frank Burns wrote: I need to access the session id from within a JSP and pass it, explicitly, to a Flash-based client. I am using the following code fragment as part of my JSP, but