|
New property "openejb.deployments.classpath.ear", default value is "false"
Usable as so:
Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.client.LocalInitialContextFactory");
p.put("openejb.deployments.classpath.ear", "true");
Context context = new InitialContext(p);
|