AssembledDirectory jar = AssembledContextFactory.getInstance().create("vfs-test.jar");
jar.addClass(HelloWorld.class);
jar.addClass(HelloWorldBean.class);
Bootstrap.getInstance().deploy(jar);
HelloWorld hello = (HelloWorld)new InitialContext().lookup("HelloWorldBean/local");
hello.hello();
Bootstrap.getInstance().undeploy(jar);
}