System.setProperty("javax.net.ssl.trustStorePassword", "unit-tests-client");
System.setProperty("javax.net.ssl.keyStorePassword", "unit-tests-client");
InitialContext jndiContext = new InitialContext();
log.debug("Lookup StatelessSessionWithSSL");
Object obj = jndiContext.lookup("StatelessSessionWithSSL");
StatelessSessionHome home = (StatelessSessionHome)obj;
log.debug("Found StatelessSessionWithSSL Home");
StatelessSession bean = home.create();
log.debug("Created StatelessSessionWithSSL");
// Test that the Entity bean sees username as its principal
String echo = bean.echo("jrmp");
log.debug("bean.echo(jrmp) = " + echo);
bean.remove();