Echo3FAQ

Frequently asked questions about Echo 3

How do I access the http session object from the echo application

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 ?

How do I use the AccordionPane ?

The key concept of the extras AccordionPane is using the TabPaneLayoutData to set the "Tab" titles/captions.

last edited 2009-10-14 07:17:07 by AndreSchild