Debugging error in Eclipse

1
Hi all, I am fairly new using the eclipse tool for debugging java actions for mendix. I currently trying to run through some breakpoints in a java function. However, when I followed the mendix documentation to debug in Eclipse, I get this following error from not preventing me to run my local server in the mendix modeler. Also it said in the console log that the "Components bundles are not loaded". Could anybody have any advice how to resolve this? Thanks Auto-properties install: file:model/bundles/project.jar (org.osgi.framework.BundleException: Unable to cache bundle: file:model/bundles/project.jar - java.io.FileNotFoundException: model\bundles\project.jar (The system cannot find the file specified)) org.osgi.framework.BundleException: Unable to cache bundle: file:model/bundles/project.jar at org.apache.felix.framework.Felix.installBundle(Felix.java:2870) at org.apache.felix.framework.BundleContextImpl.installBundle(BundleContextImpl.java:157) at org.apache.felix.main.AutoProcessor.processAutoProperties(AutoProcessor.java:296) at org.apache.felix.main.AutoProcessor.process(AutoProcessor.java:79) at org.apache.felix.main.Main.main(Main.java:292) Caused by: java.io.FileNotFoundException: model\bundles\project.jar (The system cannot find the file specified) at java.io.FileInputStream.open0(Native Method) at java.io.FileInputStream.open(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source) at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source) at org.apache.felix.framework.util.SecureAction$Actions.run(SecureAction.java:1581) at java.security.AccessController.doPrivileged(Native Method) at org.apache.felix.framework.util.SecureAction.getURLConnectionInputStream(SecureAction.java:511) at org.apache.felix.framework.cache.JarRevision.initialize(JarRevision.java:165) at org.apache.felix.framework.cache.JarRevision.<init>(JarRevision.java:77) at org.apache.felix.framework.cache.BundleArchive.createRevisionFromLocation(BundleArchive.java:878) at org.apache.felix.framework.cache.BundleArchive.reviseInternal(BundleArchive.java:550) at org.apache.felix.framework.cache.BundleArchive.<init>(BundleArchive.java:153) at org.apache.felix.framework.cache.BundleCache.create(BundleCache.java:277) at org.apache.felix.framework.Felix.installBundle(Felix.java:2866) ... 4 more Auto-properties install: file:model/bundles/project.jar (org.osgi.framework.BundleException: Unable to cache bundle: file:model/bundles/project.jar - java.io.FileNotFoundException: model\bundles\project.jar (The system cannot find the file specified)) org.osgi.framework.BundleException: Unable to cache bundle: file:model/bundles/project.jar at org.apache.felix.framework.Felix.installBundle(Felix.java:2870) at org.apache.felix.framework.BundleContextImpl.installBundle(BundleContextImpl.java:157) at org.apache.felix.main.AutoProcessor.processAutoProperties(AutoProcessor.java:296) at org.apache.felix.main.AutoProcessor.process(AutoProcessor.java:79) at org.apache.felix.main.Main.main(Main.java:292) Caused by: java.io.FileNotFoundException: model\bundles\project.jar (The system cannot find the file specified) at java.io.FileInputStream.open0(Native Method) at java.io.FileInputStream.open(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileInputStream.<init>(Unknown Source) at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source) at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source) at org.apache.felix.framework.util.SecureAction$Actions.run(SecureAction.java:1581) at java.security.AccessController.doPrivileged(Native Method) at org.apache.felix.framework.util.SecureAction.getURLConnectionInputStream(SecureAction.java:511) at org.apache.felix.framework.cache.JarRevision.initialize(JarRevision.java:165) at org.apache.felix.framework.cache.JarRevision.<init>(JarRevision.java:77) at org.apache.felix.framework.cache.BundleArchive.createRevisionFromLocation(BundleArchive.java:878) at org.apache.felix.framework.cache.BundleArchive.reviseInternal(BundleArchive.java:550) at org.apache.felix.framework.cache.BundleArchive.<init>(BundleArchive.java:153) at org.apache.felix.framework.cache.BundleCache.create(BundleCache.java:277) at org.apache.felix.framework.Felix.installBundle(Felix.java:2866) ... 4 more Auto-properties start: file:model/bundles/project.jar (org.osgi.framework.BundleException: Unable to cache bundle: file:model/bundles/project.jar - java.io.FileNotFoundException: model\bundles\project.jar (The system cannot find the file specified)) ->
asked
1 answers
0

You are using a custom jar file. These needs to be placed in your userlib directory.

Regards,

Ronald

answered