{
boolean passed = false;
try
{
UserCoordinator ua = UserCoordinatorFactory.userCoordinator();
ua.begin();
System.out.println("Started: "+ua.identifier()+"\n");
ua.begin();
System.out.println("Started: "+ua.identifier()+"\n");
ua.begin();
System.out.println("Started: "+ua.identifier()+"\n");
DeploymentContext manager = DeploymentContextFactory.deploymentContext();
Context theContext = manager.context();
System.out.println(theContext);
ua.cancel();
ua.cancel();
ua.cancel();
passed = true;
}
catch (Exception ex)
{