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