return (null);
// Use the host mapper to match the uri to a context
try {
Host host = (Host) context.getParent();
Context child = host.map(uri);
if (child != null) {
// Without crossContext, can only return the current context
if (context.getCrossContext()) {
return child.getServletContext();
} else {