// that fault message processing should cease. Fault message processing
// stops, close is called on each previously invoked handler in the chain, the
// exception is dispatched
@Test
public void testHandleFaultThrowsProtocolException() {
ProtocolException pe = new ProtocolException("banzai");
ProtocolException pe2 = new ProtocolException("banzai2");
// throw exception during handleFault processing
logicalHandlers[2].setException(pe);
logicalHandlers[1].setFaultException(pe2);
invoker.setRequestor(true);