Frequently asked questions about Echo 3
How do I access the http session object from the echo application
You can use the http session object to access/store informations in the session object
You should however not use this a a place to store application state informations, as of svn version 2208 (2009.09.27) it is now possible to have multiple windows per session (
http://echo.nextapp.com/site/node/4944) The correct place for per-application information is the
http://echo.nextapp.com/content/echo3/doc/3.0/api/public/app/nextapp/echo/app/ApplicationInstance.html class.
Connection conn = WebContainerServlet.getActiveConnection();
if (conn != null)
{
HttpSession thisSession = conn.getRequest().getSession(false);
if (thisSession != null)
{
_user= (IUser) thisSession.getAttribute("myUser");
}
}
How do I migrate my application from Echo2 to Echo3 ?
You can find some migration information here:
http://echo.nextapp.com/site/echo3/doc/migration Many (but not all) components of the EchopointNG project have been rewritten. More information can be found here: Echopoint
How do I use the AccordionPane ?
The key concept of the extras AccordionPane is using the TabPaneLayoutData to set the "Tab" titles/captions.