InitialContext jndiContext = new InitialContext();
Session1RemoteHome home = (Session1RemoteHome)jndiContext.lookup("DeploymentDescriptorSession1/home");
Session1Remote session1 = home.create();
String initValue1 = session1.getInitValue();
System.out.println("DeploymentDescriptor Session1 init value is " + initValue1);
String initValue2 = session1.getLocalSession2InitValue();
System.out.println("DeploymentDescriptor Session2 init value is " + initValue2);