SCAClientFactory clientFactory = SCAClientFactory.newInstance(URI.create("myFooDomain"));
// test multiple service error reported at the SCAClient wire
try {
HelloworldService service = clientFactory.getService(HelloworldService.class, "MultipleServiceComponent");
assertEquals("Hello petra", service.sayHello("petra"));
fail();
} catch (ServiceRuntimeException e) {
// expected
}