SourceProcessor sourceProcessor = new SourceProcessor(config, uri);
try {
String source = ioUtils.toString(new FileInputStream(srcFile));
return sourceProcessor.processSourceForServer(source);
} catch (FileNotFoundException e) {
throw new UriNotFound("Couldn't find "+uri, e);
}
}