• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

Problem starting eclipse

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

i have downloaded eclipse 3.0.

when i strart eclipse.exe it gives the following error.

!SESSION Tue Jun 29 02:36:56 EDT 2004 ------------------------------------------
!ENTRY org.eclipse.core.launcher 4 0 Jun 29, 2004 02:36:56.740
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.ClassNotFoundException: org.eclipse.core.runtime.adaptor.EclipseStarter
at java.net.URLClassLoader$1.run(URLClassLoader.java:198)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:186)
at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
at org.eclipse.core.launcher.Main.basicRun(Main.java:180)
at org.eclipse.core.launcher.Main.run(Main.java:644)
at org.eclipse.core.launcher.Main.main(Main.java:628)


am i missing some components ?

Thanks
Gauri
 
Ranch Hand
Posts: 697
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
are you using jdk/jre 1.4?
 
Gauri Telang
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yes,

i am using jdk141_05
 
Ranch Hand
Posts: 493
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Gauri,
Look at the following thread for a possible explanation/answer:
https://coderanch.com/t/102861/vc/Eclipse-Download
Regards.
Bharat
 
Gauri Telang
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Bharat

i have had a look at the thread that u suggested

This is my classpath

.;C:\bea\weblogic700\server\lib\webservices.jar;C:\bea\weblogic700\server\lib\weblogic.jar;C:\bea\weblogic700\server\lib;C:\bea_81SP2\jdk141_05\jre\lib;C:\bea_81SP2\jdk141_05\jre\lib\ext;C:\bea_81SP2\jdk141_05\lib;C:\bea_81SP2\jdk141_05\bin;C:\oracle\ora92\jdbc\lib\classes12.zip;C:\Program Files\Altova\xmlspy\XMLSpyInterface.jar

i have proper java dirs in classpath. Let me know if you some problem there.

Also can you tell me where is this 'org.eclipse.core.runtime.adaptor.EclipseStarter' placed ? May be i am missing some important jar file..

Thanks
Gauri
 
Bharat Ruparel
Ranch Hand
Posts: 493
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Gauri,
This has got nothing to do with your CLASSPATH, but the "PATH" or more correctly DOS PATH if you are developing in the Windows world. Somewhere in your PATH statment, preferably, as close to the front as possible, you should set it to point to the "bin" directory of your jdk.
From looking at your classapth above, I would do something like:

PATH=C:\bea_81SP2\jdk141_05\bin;$PATH

I am assuming that you have basic familiarity with setting DOS environment variables. Just make sure that you have the path to the bin directory set as shown above. If you have other programs that need to be placed before the jdk bin directory as shown above, that is fine too.

You will have to reboot the computer after setting the PATH variable.

You may or may not have to reinstall Eclipse.

Hope this helps.

Bharat
 
Gauri Telang
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi bharat,

i am sorry ..my mistake...i posted classpath instead of path in hurry...

my path is ...

C:\ODI\OStore\bin;C:\oracle\ora92\bin;%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\WBEM;C:\Program Files\Symantec\pcAnywhere\;C:\Program Files\IQSC\Q+E;C:\bea_81SP2\jdk141_05\bin

i have removed oracle jre bin directory. but still the problem persists...

do i have to insall eclipse ? when i unzipped the downloaded zip file...it straightaway gave eclipse.exe with other files. i did not do anything special for installing eclipse. am i missing something there ?

gauri
 
Gauri Telang
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
got it...

i had to put java/lib file path (the ususal stuff we put in classpath) in the eclipse.properties file in the plugins/org.eclipse.osgi_3.0.0/ directory.

thanx for the help
gauri
 
reply
    Bookmark Topic Watch Topic
  • New Topic