i know this should be a very stupid question . but i have been using Ejbs since long time and i have some code to support with lots of old POJOs so my question is that can i lookup a JNDI resource from a POJO using this notaions cause i am geting a naming exception or i need a web componenet to do that and there is no way to do it from an old POJO
// Look up our data source
DataSource ds = (DataSource) envCtx.lookup("jdbc/ecs");
// Allocate and use a connection from the pool
conn = ds.getConnection();
} catch (Exception e) {
e.printStackTrace();
throw new ApplicationException(ECSConstants.EC_DB);
}