- This topic has 7 replies, 3 voices, and was last updated 13 years, 3 months ago by
arunsny.
-
AuthorPosts
-
arunsnyMemberHi All, i’m new to this forum and a new to myeclipse i have a problem as i run my program in the old version its running perfectly but in the new version myeclipse 10 for spring the it says after running the programm libraries Jssc.jar and lib/libjssc.dll not found. I think it is a small problem, if any java experts in my eclipse know whats the bug do let me know how it can be solved.
Best regards
Arun Sony
Attachments:
You must be logged in to view attached files.
support-joyMemberArun,
Sorry to hear you are running into this issue. I think the build path is not set-up properly. Right click on your project > build path > configure build path and check if the libs Jssc.jar and libjssc.dl are present in the project build path. If not already present, you could add them.
In case this is still an issue, please provide below details-
1. Open MyEclipse IDE, from menu options click on MyEclipse > Installation Summary > Installation Details and copy and paste the same here
2. Clear .log file located at [your workspace dir]/.metadata/.log, replicate the issue and attach file here
3. Right click on the issues listed in the problems tab and click on [quick-fix]Let me know how this works for you.
arunsnyMemberThanks Joe for the fast reply, as you said i have tried to configure the build path and check if the libs Jssc.jar and libjssc.dl its all configured and added so i’m posting the Installation Details for your reference.
*** Date:
Donnerstag, 19. Januar 2012 09:55 Uhr MEZ** System properties:
OS=WindowsXP
OS version=5.1.0
Java version=1.6.0_13*** MyEclipse details:
MyEclipse Enterprise Workbench
Version: 10.0
Build id: 10.0-20111028*** Eclipse details:
MyEclipse for SpringVersion: 10.0.0
Build ID: 10.0.0 Build 7 (111109_1440)
Eclipse startup command=-os
win32
-ws
win32
-arch
x86
-showsplash
-launcher
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\myeclipseforspring.exe
-name
Myeclipseforspring
–launcher.library
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\../Common/plugins/org.eclipse.equinox.launcher.i18n.win32.win32.x86_3.2.0.v201103301700\eclipse_3215.dll
-startup
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\../Common/plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
-install
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10
-configuration
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\configuration
-vm
C:\Programme\MyEclipse for Spring\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\bin\client\jvm.dllI have tried right clicking the issue in the problem tab and selected quick fix but its showing the same problem again build path configuration . So the library is already added in the build path..(the libs Jssc.jar and libjssc.dl are present both in the tab libraries and order and export).. there should be another bug i guess.
thank you for your time .. hear from you soon .
arunsnyMemberThanks Joe for the fast reply, as you said i have tried to configure the build path and check if the libs Jssc.jar and libjssc.dl its all configured and added so i’m posting the Installation Details for your reference.
*** Date:
Donnerstag, 19. Januar 2012 09:55 Uhr MEZ** System properties:
OS=WindowsXP
OS version=5.1.0
Java version=1.6.0_13*** MyEclipse details:
MyEclipse Enterprise Workbench
Version: 10.0
Build id: 10.0-20111028*** Eclipse details:
MyEclipse for SpringVersion: 10.0.0
Build ID: 10.0.0 Build 7 (111109_1440)
Eclipse startup command=-os
win32
-ws
win32
-arch
x86
-showsplash
-launcher
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\myeclipseforspring.exe
-name
Myeclipseforspring
–launcher.library
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\../Common/plugins/org.eclipse.equinox.launcher.i18n.win32.win32.x86_3.2.0.v201103301700\eclipse_3215.dll
-startup
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\../Common/plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
-install
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10
-configuration
C:\Programme\MyEclipse for Spring\MyEclipse for Spring 10\configuration
-vm
C:\Programme\MyEclipse for Spring\Common\binary\com.sun.java.jdk.win32.x86_1.6.0.013\jre\bin\client\jvm.dllI have tried right clicking the issue in the problem tab and selected quick fix but its showing the same problem again build path configuration . So the library is already added in the build path..(the libs Jssc.jar and libjssc.dl are present both in the tab libraries and order and export).. there should be another bug i guess.
thank you for your time .. hear from you soon .
Attachments:
You must be logged in to view attached files.
support-joyMemberArun,
I am afraid, I need the .log file and not .lock file. Could you attach a screenshot of your .metadata folder. For e.g if your .metadata folder is located at C:\Documents and Settings\arun\Workspaces\MyEclipse for Spring 10\.metadata look for text document. This is the .log file. Please attach the same here. In case you cannot find the same, please attach a screenshot of .metadata folder.
Also attach screenshot of Project Build Path – Libraries and Order and Export tab. This would help me get a visual.
Sorry for the inconvenience.
arunsnyMemberHi Joy,
thanks for the reply i found the .log file which i did not find surprisingly last time 🙂 and i’m attaching the same here. Thank you for your great help and look forward to hear from you.
Regards
Arun
Attachments:
You must be logged in to view attached files.
Brian FernandesModeratorArun,
1) Sorry for the misinformation earlier, you must remove the DLL file from your project’s build path page – so make sure libjssc.dll is *unchecked*.
2) Your application, at runtime, is unable to find the DLL file, which is why you are running into this problem. Edit your launch configuration (you can do this from the Run menu by choosing Run > Run Configurations and then choosing the configuration you are using to run your application. Assuming this is a standalone application, you will find it under the “Java Applications” node.
Options:
a) On the argument tab, observe the Working directory. You can try to place your DLL file in this directory.
OR
b) Use the -Djava.library.path argument in the “VM arguments” section to specify the path to the DLL on your system.
OR
c)
On the build path page, in the Libraries tab, select the JAR which needs the DLL, expand it, select the “Native library location” node and click Edit to choose the location at which the DLL resides.
You might find some useful information on this subject here: http://stackoverflow.com/a/958074
arunsnyMemberThank you Brain for your suggestions, I have edited the run configurations as you have mentioned and now its showing no errors.
Thank you very much for your help.
best regards
Arun
-
AuthorPosts