Generate own session ID?

Does anybody know how to generate our own uniquesession ID when creating session?When we use request.getSession(true), it generate the session Id by the system, how can I generate my own sessID?ThanksBryan
[247 byte] By [lfwu] at [2007-9-26 1:37:27]
# 1

There is no need to do this. But if you really really want to, you could set a cookie to keep the session ID that you set, and then store that number on the server uniquely identifying the user, but that would be a lot of extra coding for you and would essentially waste all the time that Sun (and your server vendor) spent on it getting it right and probably getting it better than you will just by virtue of time spent.

GN

statusquo at 2007-6-29 2:24:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
But what I want to do it is in server side, I could control the session Id generated for clients?
lfwu at 2007-6-29 2:24:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
You could't controll the sessionId string, but you create it on the server side.
RJavaMan at 2007-6-29 2:24:13 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...