/******************************************************************************* * Copyright (c) 2008, 2010 VMware Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * VMware Inc. - initial contribution *******************************************************************************/ package snap.simple; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public final class RequestPathTranslationServlet extends HttpServlet { private static final long serialVersionUID = 3186223392829771031L; /** * {@inheritDoc} */ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { PrintWriter writer = resp.getWriter(); writer.println("RequestUri=" + req.getRequestURI()); writer.println("ContextPath=" + req.getContextPath()); writer.println("ServletPath=" + req.getServletPath()); writer.println("PathInfo=" + req.getPathInfo()); } }