NodeLauncher nodeLauncher = NodeLauncher.newInstance();
SCANode storeClientNode = nodeLauncher.createNodeFromURL("http://localhost:9990/node-config/StoreClientNode");
storeClientNode.start();
SCAClient client = (SCAClient)storeClientNode;
Shopper shopper = client.getService(Shopper.class, "StoreClient");
String total = shopper.shop("Orange", 5);
System.out.println("Total: " + total);
storeClientNode.stop();
}