private Templates createTemplates(String absoluteURI, boolean isCompilable)
throws IOException, SAXException, TransformerConfigurationException {
// Get the URLContent manager.
final XMLPipelineContext context = getPipelineContext();
URLContentManager manager = PipelineURLContentManager.retrieve(context);
// Get the content of the template, no timeout is supplied as there
// is no way to specify an operation specific timeout so it uses the
// default one associated with the manager.
final URL url = new URL(absoluteURI);
final URLConfiguration urlConfig =
URLConfigurationFactory.getURLConfiguration(url, context);
URLContent content = manager.getURLContent(url, null, urlConfig);
InputStream connectionInput = null;
try {
connectionInput = content.getInputStream();
StreamSource xslSource = new StreamSource(connectionInput,