Examples of JaxRpcWorkflowStarter


Examples of net.fp.rp.axis.JaxRpcWorkflowStarter

  public void invokeOrderServices(int orderId, int nrOfCalls) throws RpException{
    StopWatch stopWatch = new StopWatch(nrOfCalls + " OrderService call(s)");
    Map orderServices = this.beanFactory.getBeansOfType(JaxRpcWorkflowStarter.class);
    for (Iterator it = orderServices.keySet().iterator(); it.hasNext();) {
      String beanName = (String) it.next();
      JaxRpcWorkflowStarter orderService = (JaxRpcWorkflowStarter) orderServices.get(beanName);
      System.out.println("Calling OrderService '" + beanName + "' with order ID " + orderId);
      stopWatch.start(beanName);
      String order = null;
      for (int i = 0; i < nrOfCalls; i++) {
        //order = orderService.startWorkflow();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.