FOUND IT!
I had already debugged and the exception was being thrown properly. The
problem was that our client was encrypting and sending the message, and if
it got a security failure due to an expired session, it would get a new
session, copy the body of the original message into a new envelope and send
that one encrypted. Unfortunately, we were copying the body after it was
encrypted, so on the server when we got an encrypted body we assumed the
pipeline had not processed it.
Thanks for the help.
-EP
> I would enable breaking on all exceptions and try to step through the server
> side in a debug session.
[quoted text clipped - 12 lines]
> > So, why are my security exceptions ignored? How can I get the pipeline to
> > properly throw my fault?