Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How find out objects in a session

Status
Not open for further replies.

hughrivers

Programmer
Oct 31, 2000
3
US
Does anyone know how to find out all existing object in a session? I am working on a java program and many of the API I use require certain objects to exist before the class gets called. Is there a url you call?
thanks
 
Use the HttpSession.getValueNames(). It returns an array of the names of all the application layer data objects bound into the session.

Bye, Otto.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top