{
getServer().invoke(new ObjectName(JbpmServerMBean.OBJECT_NAME), "deployProcess", null, null) ;
final Message message = MessageFactory.getInstance().getMessage() ;
final Call call = message.getHeader().getCall() ;
final EPR replyToEPR = new LogicalEPR("TestJBPMReplyESB", "Reply") ;
replyToEPR.getAddr().addExtension(ReplyAction.REPLY_TYPE, "reply") ;
call.setReplyTo(replyToEPR) ;
final EPR faultToEPR = new LogicalEPR("TestJBPMReplyESB", "Reply") ;
faultToEPR.getAddr().addExtension(ReplyAction.REPLY_TYPE, "fault") ;
call.setFaultTo(faultToEPR) ;
final ServiceInvoker si = new ServiceInvoker("TestJBPMReplyESB", "Create") ;
si.deliverAsync(message) ;