@Override
public DenotifyResponseDMO denotify(DenotifyRequestDMO notifyRequest) {
// All requests are immediately wrapped for use on the server. This includes
// associating the request with the originating HttpServletRequest.
DenotifyRequest request = new DenotifyRequest(notifyRequest, getThreadLocalRequest());
if (request.isTrackingEnabled())
logger.trace("Received by DMP servlet:\n" + request.toOIF());
return null;
}