3

I was working on eclipse two days ago, and closed it properly.
Now, when I'm trying to start it, I get the splash screen popping for a blink of an eye, then disappearing.

I get:

  • no error message, and
  • no error is logged in the <workspace>\.metadata\.log file (the last errors logged there are from two days ago).

Apparently, the problem isn't with the workspace, because I changed the SHOW_WORKSPACE_SELECTION_DIALOG argument in <eclipse>\configurations\.settings\org.eclipse.ui.ide.prefs to true, and it doesn't even get as far as showing the dialog.

There's only one thing I can recall I did before it stopped working - I have installed a plugin for UFT Java Extensibility SDK from HP.
Needless to say uninstalling it didn't help.

Is there any other log I can hope to find helpful?
Or anything else I can do to get it to work?

EDIT:

I was just trying to start another instance of eclipse I have (adt-bundle-windows-x86-20130219), and got the same outcome.

EDIT:

I added Java & QTP to the title in order to help others who bumps into the same issue.

Falko
  • 17,076
  • 13
  • 60
  • 105
Elist
  • 5,313
  • 3
  • 35
  • 73

2 Answers2

1

If the JRE is somehow the issue, try installing a JDK (not a JRE), in a non-default path (for instance, C:\Prog\Java\JDK1.7.0_xx), and make sure your eclipse.ini explicitly reference that JDK.

-vm
C:/Prog/Java/jdk1.7.0_21/jre/bin/server/jvm.dll

(you can use '/' even on Windows in an eclipse.ini file)

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
1

The problem was indeed with Java (Thanks Arne). Re-installing the jre didn't help, so I also tried to deleted the JAVA_OPTIONS and JAVA_TOOL_OPTIONS enviroment variables, which solved the problem.

Later, I found this discussion which seems related to my problem: http://h30499.www3.hp.com/t5/Unified-Functional-Testing/Environment-variables-JAVA-OPTIONS-and-JAVA-TOOL-OPTIONS-is/td-p/5855995.

I will look more deeply into it later, when I will start using HP's plugin, but I hope this thread can help others who run into trouble with eclipse after installing this plugin.

Elist
  • 5,313
  • 3
  • 35
  • 73