Package org.apache.xmlrpc.common

Examples of org.apache.xmlrpc.common.XmlRpcWorker.execute()


   */
  public Object execute(XmlRpcRequest pRequest) throws XmlRpcException {
      final XmlRpcWorkerFactory factory = getWorkerFactory();
      final XmlRpcWorker worker = factory.getWorker();
        try {
            return worker.execute(pRequest);
        } finally {
            factory.releaseWorker(worker);
        }
  }
}
View Full Code Here


   */
  public Object execute(XmlRpcRequest pRequest) throws XmlRpcException {
      final XmlRpcWorkerFactory factory = getWorkerFactory();
      final XmlRpcWorker worker = factory.getWorker();
        try {
            return worker.execute(pRequest);
        } finally {
            factory.releaseWorker(worker);
        }
  }
}
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.