Hi All,

                Is there any way to track  the session if the client browser
doesn't support Cookies...
I used URL rewriting by i don't want my session id to be exposed...
Is there any way that i can store the session id as a header information and
get it back every time.. ?
The session id generated by tomcat(with apache) is very small
abt..10characters.. and i am getting
problem when implementing both url rewriting and Http session... the problem
is ...
when url is rewritten in a page .. its not considering it in the same
session the new page is having a diffrent session id... And the greatest bug
i saw is when in this is.... when cookies turned off it works fine if
cookies are ON then
there are two session for a client...
i mean the following code is giving me this output
-----------------------------------------------
All Your Cookies Contains.......
<br>
<%

 Cookie c[]= request.getCookies();
 for(int i=0;i<c.length;i++)
 {
      out.println(c[i].getName()+"  "+c[i].getValue()+"<br>");
 }
%>
-----------------------
All Your Cookies Contains.......
JSESSIONID 518xqr3oi1
JSESSIONID 9llkco3st1
--------------------------------------------

there are two cookies with same name ????? with diffrent value .. how is
this possible ...

Arun.N,
EximSoft Technologies,
Bangalore-78

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
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