hi,
first of all, great tool. yesterday, I tried to move a small application i wrote from version 1.1 to 1.2.
I guickly figured out that you set your naming strait so that the RgbEngine mentioned in the Handbook now is the RibEngine.
But now, I stuck on this error:
code
system.ERROR:
Stream is null
at com.ibm.wac.util.ResourcePool.loadProperties(ResourcePool.java:205)
at com.ibm.wac.util.ResourcePool.loadProperties(ResourcePool.java:193)
at com.ibm.wac.rib.core.config.DefaultRibConfigurationFactory.<init>(DefaultRibConfigurationFactory.java:72)
at com.ibm.wac.rib.core.engine.RibEngine.<init>(RibEngine.java:131)
at com.ibm.wac.rib.core.engine.RibEngine.<init>(RibEngine.java:106)
.. my Code on the Line where I create the new RibEngine
[/code]
and here my Code:
code
log.info("started");
try {
FileInputStream fis = new FileInputStream("gui.rib");
log.info("fis="+fis);
RibEngine rgb = new RibEngine(fis);
// RgbEngine rgb = new RgbEngine(fis);
rgb.showAll();
} catch (IOException e) {
log.error("Input File for Reflectiv Interface Builder could not be loaded",e);
}
[/code]
any Ideas?
when i switch to the old lib, everithing works fine.
many Thanks, andreas