baseRequest.setHandled(true);
JettyContinuationProvider p = (JettyContinuationProvider)inMessage
.get(ContinuationProvider.class.getName());
if (p != null) {
//make sure the continuation is stripped down
JettyContinuationWrapper c = p.getContinuation(false);
if (c != null) {
c.done();
}
}
} catch (SuspendedInvocationException ex) {
throw ex.getRuntimeException();
} catch (RuntimeException ex) {