Attribute callByValue = new Attribute("CallByValue", Boolean.TRUE);
server.setAttribute(namingService, callByValue);
System.out.println("NamingService.CallByValue set to true");
InitialContext ctx = new InitialContext();
Context testCtx = ctx.createSubcontext("shared-context");
System.out.println("Created shared-context");
testCtx.bind("KeyCount", new Integer(names.length));
System.out.println("Bound KeyCount");
for(int n = 0; n < names.length; n ++)
{