Im trying to run the examples provided but not having much luck with it. Using NetBeans 5.5 and have included the following 2 jars.
jruleenginesrc.jar
jsr94.jar
The build is successful but running example1 throws these errors.
java.lang.ClassNotFoundException: org.jruleengine.RuleServiceProviderImpl
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at rule1.Example1.<init>(Example1.java:25)
at rule1.Example1.main(Example1.java:184)
Any ideas?
Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Im trying to run the examples provided but not having much luck with it. Using NetBeans 5.5 and have included the following 2 jars.
jruleenginesrc.jar
jsr94.jar
The build is successful but running example1 throws these errors.
java.lang.ClassNotFoundException: org.jruleengine.RuleServiceProviderImpl
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at rule1.Example1.<init>(Example1.java:25)
at rule1.Example1.main(Example1.java:184)
Any ideas?
Thanks.
Got it. class files were missing in the jars
I have the same problem. Any idea how to fix this?