--
PedroRio - 30 Dec 2010
Each time a user logs to a XEO application a boSession instance is created to represent the session of the user whithin the application
boSession
The boSession instance
aaaaaaaa
Each
EboContext instance
Falar de JTA - Java Transaction qq coisa
Safe Ebo Context Usage Example
boSession session = null;
EboContext context = null;
try {
session = boApplication.getApplicationFromStaticContext("XEO")
.boLogin("SYSUSER", boLoginBean.getSystemKey());
context = session.createRequestContext(null, null, null);
//Your code in here
} catch (Exception e) {
//Process the exception in case of error
} finally {
if (context!=null)
context.close();
if (session!=null)
session.closeSession();
}
aaaaa
getPerformerIProfileBoui