HTTPContext httpContext = new HTTPContext(bindAddress, bindPort);
for(String mapping : standardContext.findServletMappings())
{
httpContext.add(new Servlet(
standardContext.findServletMapping(mapping), contextPath));
}
return new ProtocolMetaData()
.addContext(httpContext);
}