final String service = "/proxy";
// fetching proxy service -- Servlet setup code gotten from
// <http://docs.codehaus.org/display/JETTY/Embedding+Jetty> @ 2010-06-30
Context servlets = new Context(server, "/", Context.NO_SESSIONS);
servlets.addServlet(new ServletHolder(new ProxyServlet()), service);
// Hook for subclass to add more servlets
if (contextCallback != null) {
contextCallback.configureContext(servlets);
}