Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » Getting java.lang.RuntimeException: No application id has been found. on running product file(RuntimeException on running the product file used for plugin development)
Getting java.lang.RuntimeException: No application id has been found. on running product file [message #1783662] Thu, 15 March 2018 09:43 Go to next message
Prasanth Reddy Dondeti is currently offline Prasanth Reddy DondetiFriend
Messages: 4
Registered: March 2018
Junior Member
While working with plugin development, I was facing the below issue on running the product file which is linked with the plugin project. Any help would be grateful. Very badly in search for solution. Also attaching the log file for reference.

!ENTRY org.eclipse.osgi 4 0 2018-03-15 12:42:41.081
!MESSAGE Application error
!STACK 1
java.lang.RuntimeException: No application id has been found.
at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:242)
at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:388)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:243)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:653)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:590)
at org.eclipse.equinox.launcher.Main.run(Main.java:1499)
at org.eclipse.equinox.launcher.Main.main(Main.java:1472)
Re: Getting java.lang.RuntimeException: No application id has been found. on running product file [message #1783953 is a reply to message #1783662] Tue, 20 March 2018 16:38 Go to previous message
Ed Merks is currently offline Ed MerksFriend
Messages: 33142
Registered: July 2009
Senior Member
Be sure to include the bundle org.eclipse.equinox.ds in your launch. In Oomph's installer product, we even have it's start level specified
   <configurations>
      <plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="4" />
      <plugin id="org.eclipse.equinox.common" autoStart="true" startLevel="2" />
      <plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="2" />
      <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
   </configurations>


Ed Merks
Professional Support: https://www.macromodeling.com/
Previous Topic:Troubles with eclipse.buildScript and versions of dependent plugins
Next Topic:Adding an extra buildCommand to the javaNature
Goto Forum:
  


Current Time: Fri Apr 26 16:44:56 GMT 2024

Powered by FUDForum. Page generated in 0.03005 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top