NodeImpl c = graph.getNode("c");
NodeImpl d = graph.getNode("d");
NodeImpl adder = graph.getNode(adder1ID);
NodeImpl adder2 = graph.getNode(adder2ID);
WsdlDefinitions workflowWSDL = workflow.getWorkflowWSDL();
DSCUtil.convertToCWSDL(workflowWSDL, URI.create("http://example.com"));
HashMap<String, String> inputMap = new HashMap<String, String>();
inputMap.put("a", "2");
inputMap.put("b", "3");
inputMap.put("c", "4");
inputMap.put("d", "5");
try {
sendNotification(workflowWSDL, null, WSDLUtil.getFirstOperation(workflowWSDL).getName(), inputMap, null,
notifier);
} catch (UtilsException e) {
e.printStackTrace();
}
WsdlDefinitions adderWSDL = WsdlResolver.getInstance().loadWsdl(
new File(XBayaPathConstants.WSDL_DIRECTORY + File.separator + Adder.WSDL_PATH).toURI());
HashMap<String, String> inputMap1 = new HashMap<String, String>();
inputMap1.put("x", "2");
inputMap1.put("y", "3");