Address managedServerDeploymentAddress = new Address();
managedServerDeploymentAddress.add("host", "master");
managedServerDeploymentAddress.add("server", "server-one");
managedServerDeploymentAddress.add("deployment", "javaee6-test-app.war");
Result readAttributeResult = getDomainControllerASConnection().execute(
new ReadResource(managedServerDeploymentAddress));
assertTrue(readAttributeResult.isSuccess(), readAttributeResult.getFailureDescription());
@SuppressWarnings("unchecked")
Map<String, ?> attributes = (Map<String, ?>) readAttributeResult.getResult();