Facilitator Tips

Every participant who joins a workshop or program expects a facilitator to be professional at all times. This person should be an expert in the given role. This is what every facilitator needs to uphold and demonstrate. Keeping a professional demeanor is not just about faking it for as long as you can, but making it a true and natural reflection of your personality regardless of the position, career, or aspect in your life. Along the way, experienced facilitators gradually learn to incorporate these professional attributes and share them with… Read More

Working with JSP Sessions

Working with JSP Sessions In this JSP tutorial, you will learn about JSP session object methods, getCreationTime, getLastAccessedTime, getId, invalidate(), getMaxInactiveInterval, setMaxInactiveInterval(), removeAttribute(String name) and setAttribute(String, object). This section details the syntax, usage, example and explanation of more session object methods, such as: getCreationTime getLastAccessedTime getId invalidate() getMaxInactiveInterval setMaxInactiveInterval() removeAttribute(String name) setAttribute(String, object) getCreationTime: The getCreationTime method of session object is used to return the session created time. The returned time value would be in milliseconds, the time value is midnight January 1, 1970 GMT. General syntax of getCreationTime of… Read More