Examples of EPR


Examples of org.jboss.soa.esb.addressing.EPR

  {
    Call call  = message.getHeader().getCall();
    Collection<EPR> eprs = RegistryUtil.getEprs(category, name);
    if (null==eprs || eprs.size()<1)
      throw new RegistryException("No eprs found for <"+category+","+name+">");
    EPR service = eprs.iterator().next();
    call.setTo(service);
    return invokeAndAwaitResponse(message, maxWaitMillis);
  }
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.