retriving an ArrayList from Session Object

In the my first jsp i have the line.

session.setAttribute("list",alist);

That sets an ArrayList called alist(already created) into the session Object.

In the my next jsp is the line.

ArrayList arrayList = session.getAttribute("list");

I get the following error message when compiling.

"CheckPayRollAxis.jsp": Error #: 354 : incompatible types; found: java.lang.Object, required: java.util.ArrayList at line 14

Please tell me how to retreive the arrayList.

[515 byte] By [clark2] at [2007-9-19]
# 1
hiyou need to cast the get Attribute to ArrayList like this:ArrayList arrayList = (ArrayList) session.getAttribute("list");
RR4 at 2007-7-4 > top of java,Enterprise & Remote Computing,Web Tier APIs...