Node node = NodeFactory.newInstance().createNode("context/access/ContextAccess.composite", new Contribution("c1", location));
node.start();
// Code: To access the Spring Application Context instance
ApplicationContext ctx = SCAApplicationContextProvider.getApplicationContext();
if (ctx.containsBean("CalculatorServiceBean"))
System.out.println("CalculatorServiceBean is now available for use...");
CalculatorService calculatorService =
((Client)node).getService(CalculatorService.class, "CalculatorServiceComponent");