Just a stupid question, but is browser set to accept cookies?

-----Original Message-----
From: yjchen [mailto:[EMAIL PROTECTED]]
Sent: 28 March 2000 04:09
To: [EMAIL PROTECTED]
Subject: How to use session ?


Sorry to ask such stupid question.

I try to trace a user by this code:

<body>
Your session data: <br>
<%
 String[] names = session.getValueNames();
 for (int i = 0; i < names.length; i++) {
%>
 <%= names[i] %> : <%= session.getValue(names[i]) %> <br>
<%
 }
%>
 Session id: <%= session.getId() %> <br>
 New Session: <%= session.isNew() %> <br>
 Creation time: <%= new java.util.Date(session.getCreationTime()) %><br>

 Requested session ID from cookie: <%=
request.isRequestedSessionIdFromCookie() %> <br>
 Requested session ID from cookie: <%=
request.isRequestedSessionIdFromUrl() %> <br>
</body>

My problem is everytime I reload this page, the session is NEW,
and the session id always changes.
Is it normal ? Shouldn't every session has the same id ?

I use Apache 1.3.9 and the CookieTracking is on in apache.conf.
I can chech the log file ( clickstream ) and it shows apache can handle
cookie, ie:

192.168.0.5.497954209832295 GET /yjchen/test/count3.jsp HTTP/1.1
[28/Mar/2000:10:33:31 +0800]
192.168.0.5.497954209832295 GET /yjchen/test/count3.jsp HTTP/1.1
[28/Mar/2000:10:33:32 +0800]

Because I want to use JavaBean in session scope, but have many problems.

Maybe it is the one.

Thanx very much

Yen-Ju

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to