Hello everybody,
I'm beginning with Java and CLIPSJNI as well, so if this may be a stupid
doubt, I apologize in advance...
I'm running a trial GUI with NetBeans, importing some rules from CLIPSJNI
(just following a simple tutorial), with some check boxes and a button.
Everything runs ok, until I press the button. When I do, the following set
of exceptions appear:
Exception in thread "AWT-EventQueue-0" java.lang.UnsatisfiedLinkError:
CLIPSJNI.Environment.getInputBuffer(J)Ljava/lang/String;
at CLIPSJNI.Environment.getInputBuffer(Native Method)
at CLIPSJNI.Environment.getInputBuffer(Environment.java:315)
at UPC.IA.GUI.MyFirstWindow.btnPerguntaMouseClicked(MyFirstWindow.java:136)
at UPC.IA.GUI.MyFirstWindow.access$000(MyFirstWindow.java:14)
at UPC.IA.GUI.MyFirstWindow$1.mouseClicked(MyFirstWindow.java:55)
at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:270)
at java.awt.Component.processMouseEvent(Component.java:6508)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
at java.awt.Component.processEvent(Component.java:6270)
at java.awt.Container.processEvent(Container.java:2229)
at java.awt.Component.dispatchEventImpl(Component.java:4861)
at java.awt.Container.dispatchEventImpl(Container.java:2287)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4501)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
at java.awt.Container.dispatchEventImpl(Container.java:2273)
at java.awt.Window.dispatchEventImpl(Window.java:2719)
at java.awt.Component.dispatchEvent(Component.java:4687)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:723)
at java.awt.EventQueue.access$200(EventQueue.java:103)
at java.awt.EventQueue$3.run(EventQueue.java:682)
at java.awt.EventQueue$3.run(EventQueue.java:680)
at java.security.AccessController.doPrivileged(Native Method)
at
java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.j ava:76)
at
java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.j ava:87)
at java.awt.EventQueue$4.run(EventQueue.java:696)
at java.awt.EventQueue$4.run(EventQueue.java:694)
at java.security.AccessController.doPrivileged(Native Method)
at
java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.j ava:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:693)
at
java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.jav a:244)
at
java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:1 63)
at
java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.jav a:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:147)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:139)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:97)
BUILD SUCCESSFUL (total time: 2 minutes 4 seconds)
I'd be very thankful if somebody could give me some help, I couldn't find
an explanation for this, so far. I saw exceptions like that, but in
different cases.
Regards,
Richard