String url = myClassLoader.getResource("test.txt").toString();
url = url.substring(0, url.length()-8);
// Contribute the SCA contribution
TestModelResolver myResolver = new TestModelResolver(myClassLoader);
ContributionService contributionService = domain.getContributionService();
Contribution contribution = contributionService.contribute("http://test/contribution", new URL(url), myResolver, false);
assertNotNull(contribution);
// Decide which SCA composite I want to deploy
Composite myComposite = myResolver.getComposite(new QName("http://test", "test"));
// Add the deployable composite to the domain
domain.getDomainComposite().getIncludes().add(myComposite);
domain.buildComposite(myComposite);
// Start the composite
domain.getCompositeActivator().activate(myComposite);
domain.getCompositeActivator().start(myComposite);
// At this point the domain contains my contribution, my composite and
// it's started, my application code can start using it
// Get the TestServiceComponent service
TestService service = domain.getService(TestService.class, "TestServiceComponent");
// Invoke the service
String result = service.ping("Bob");
assertEquals("Hello Bob", result);
// Stop my composite
domain.getCompositeActivator().stop(myComposite);
domain.getCompositeActivator().deactivate(myComposite);
// Remove my composite
domain.getDomainComposite().getIncludes().remove(myComposite);
// Remove my contribution
contributionService.remove("http://test/contribution");
// Stop the domain
domain.stop();
}