I am trying to set up a try catch block in Workflow 4 that is attempting to calling out to another service. This service could throw a number of specific, generically typed fault exceptions:
FaultException<MySpecificFault>
In the try catch I want to have a series of catches to deal with each one individuality. However, whenever attempt to catch a fault of the specific type, like I have above, it will in all cases fall through to the generic FaultException at the end of the block.
Is there something I am missing. Is this possible to do in WF4?