I've been doing the following to display my EJB's environment:
 
// get env entries from deployment descriptor //
Properties contextProps = ctx.getEnvironment();
Enumeration enum = contextProps.keys();
while (enum.hasMoreElements()) {
    String value = contextProps.getProperty(entry);
    // format data in Html
 
    // ...
 
}
 
Is there a way of doing something similar with the ENC ?
 
Thanks
 

Anthony Catalfano      
Information Technology Analyst
Deere & Company
309-748-5201

Reply via email to