I have similar prob. The get attribute is null while the id is not null.
for my java:
if(session.getAttribute(abc)==null)
System.out.println(abc is null
else
System.out.println(abc is not null)if(session.getId()==null)
System.out.println(id is null)
else
System.out.println(abc is not null)Do i need to also use session.setAttribute(abc) in the jsp?
Start your own thread, be more descriptive, did you put it in the session?