-
Bug
-
Resolution: Done
-
Major
-
jboss-ws4ee-4.0.1
-
None
Here is a code fragment from org.jboss.webservice.handler.HandlerChainBaseImpl class:
public boolean handleFault(MessageContext msgContext)
{
boolean doNext = true;
int handlerIndex = handlers.size() - 1;
if (falseIndex != -1)
handlerIndex = falseIndex;
Handler currHandler = null;
for (; doNext && handlerIndex >= 0; handlerIndex--)
return doNext;
}
Is HandlerChain.handleFault method supposed to call Handler.handleResponse method?
Or it is a bug?