Hello,
consider this minimalistic initialization code:
FortressConfig config = new FortressConfig(); m_containerManager = new DefaultContainerManager(config.getContext()); ContainerUtil.initialize(m_containerManager);
This used to work fine if the config files were in their default locations. However, with the current code I get this error message:
org.apache.excalibur.source.SourceException: Unable to select source factory for file:/c:\Java\netbeans\3.4.1\..\conf\logkit.xconf
It seems to me that the source resolver for the 'file' protocol has disappeared. If that's the case, will it come back again, or is there some good reason why not to use it?
The "File" protocol always has been the default File protocol from your JVM.
Make sure that the supplied URL works just as well with the URL object.
Also make sure it is really there...
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
