public void testFaultInCxfService() throws Exception
{
MuleMessage request = new DefaultMuleMessage(requestFaultPayload, (Map<String,Object>)null, muleContext);
MuleClient client = muleContext.getClient();
latch = new CountDownLatch(1);
muleContext.registerListener(new ExceptionNotificationListener() {
@Override
public void onNotification(ServerNotification notification)
{
latch.countDown();
}