Hi, I am facing an issue in handling an object in session.
I store an object in the session like this.Assume object is the name of the object.I do this in my action class
if(object!=null) { session.settAttribute("objectName",object); return mapping.findForward("success"); } else { return mapping.findForward("failure"); }
I map both success and failure to the same jsp page.I check like
if(session.getAttribute("objectName")!=null)
    {
      object=  (SomeObjectClass)session.getAttribute("objectName");
    }
   if(object!=null)
   {
    //Do this
   }
   else
   {
    //Do that
   }
Now here comes my problem.There is no problem when I set the object in first time in the session.I get a problem when I call this action class from two different browsers at the same time I go to else part for one case and if part for one case.I believe this is because session is not thread safe.Is there any solution ?