On Jun 3, 2008, at 11:53 AM, Peter L. Berghold wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Viet Nguyen wrote:
I suggest you look at this sample
Thanks! That's exactly the sort of thing I was looking for.
Also, if you're new to EJB I'd recommend setting up some test cases
using the Geronimo EJB container. It'll allow you to know if you're
getting things right from a spec compliance perspective in plain unit
tests.
Here's another example that shows unit testing:
http://openejb.apache.org/3.0/simple-stateless-example.html
To get more teacher/student style descriptions of compliance issues,
alter your setup method from the one shown on that page to this:
protected void setUp() throws Exception {
Properties properties = new Properties();
properties.setProperty(Context.INITIAL_CONTEXT_FACTORY,
"org.apache.openejb.client.LocalInitialContextFactory");
properties.setProperty("openejb.validation.output.level",
"VERBOSE"); // this increases the validation output
initialContext = new InitialContext(properties);
}
Hope this helps!
-David