I've verified that the current WS-RM code only implements transmit handling (retry until acknowledged). A correct WS-RM implementation also requires receive handling, to postpone the delivery of messages received out of order when InOrder delivery assurance is used, and to block the delivery of duplicate messages when AtMostOnce or ExactlyOnce is used.
In order to implement the receive handling, I need to be able to short-circuit the processing of an in-bound message in an interceptor so that no further processing is done at this time but the appropriate transport response goes back to the sender (such as an HTTP 200 code). I also need to be able to later resume processing of an in-bound message from the point it left off. How can I best do this in CXF? Thanks, - Dennis -- Dennis M. Sosnoski Java SOA and Web Services Consulting <http://www.sosnoski.com/consult.html> Axis2/CXF/Metro SOA and Web Services Training <http://www.sosnoski.com/training.html> Web Services Jump-Start <http://www.sosnoski.com/jumpstart.html>