* @return TwoWayCourier
* @throws CourierException if the specific courier implementation cannot be created.
*/
public static TwoWayCourier getCourier(EPR toEPR, EPR replyToEPR) throws CourierException, MalformedEPRException
{
final TwoWayCourier result = new TwoWayCourierImpl(toEPR, replyToEPR);
registerCourier(result) ;
return result ;
}