String actualPath = req.getPath();
URLMapping mapping = findURLMapping(req.getScheme(), actualPath);
if (mapping == null) {
throw new URLMappingNotFoundException("A URL mapping was not found for the URL: " + req.getPath());
}
setMessagePropertiesFromMapping(req, msg, mapping);
return msg;