this.getLogger().debug( "Creating source object for " + location );
}
final int protocolPos = location.indexOf("://");
final URL url = this.urlFactory.getURL(location.substring(protocolPos+3));
final URLSource source = new org.apache.excalibur.source.impl.URLSource();
source.init(url, parameters);
return source;
}