private void fetchContentFromProxies( DavServerRequest request )
throws ServletException, ResourceDoesNotExistException
{
try
{
ProxiedArtifact proxied = proxyRequestHandler.get( request.getLogicalResource(), this.proxiedRepositories, this.managedRepository,
this.wagonProxy );
request.getRequest().setPathInfo( proxied.getPath() );
}
catch ( ProxyException e )
{
throw new ServletException( "Unable to fetch resource.", e );
}