Hello!

I am new to Jess and have some starting problems. When I have the _expression_

Rete engine = new Rete();

while debugging in Eclipse , I get a FileNotFoundException. Also I don´t get any JavaDoc information about the Jess java API via "hovers" in the java editor. 

My second problem: 

Rete engine = new Rete();
engine.batch("something.clp");

This does only work if I specify the full path of the file. Otherwise I get the message: "Cannot open file." 
But

Rete engine = new Rete();
String command = "\"(batch something.clp)\"";
engine.executeCommand(command);

works without specifying the full path. Can you please explain this behaviour to me?

Helge Hartmann

Reply via email to