no JSPs are there
1) it is an intial request to the servlet.
>>Out of curiosity, why do you want to suppress the creation of sessions?
>>If you're not doing anything with them, their creation
2) Some where in the
Java code iam basing my decision on this
for example
for a request
If already session is there (he is logged in user)
{
//loggedin user
//do some stuff
}
else if no session is there
{
//new user
// do some other stuff
}
the above statements in Java look like this
if(request.getSession(false) is not null)
{
//logged in User
}
else
{
//New user who has not logged in
}
As the apache is creating session automatically never i am going to else loop.
I hope your understand the above scenario.
The only this i really need to undestand is why it is creating the session automatically ? Can we prevent such automatic creation?