Skip to main content



      Home
Home » Eclipse Projects » Rich Client Platform (RCP) » I'm lost with this error!!!
I'm lost with this error!!! [message #448567] Wed, 26 April 2006 17:42 Go to next message
Eclipse UserFriend
Originally posted by: sebsymbol.hotmail.com

This is the log, anyone knows the problem?

!ENTRY org.eclipse.osgi 2006-04-26 23:38:20.447
!MESSAGE Bundle initial@reference:file:../Documents and Settings/Sebastián
Ávila/Mis documentos/Workspace/Jprim/ [20] was not resolved.
!SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.447
!MESSAGE Missing required bundle org.eclipse.ui.forms_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.447
!MESSAGE Missing required bundle org.eclipse.jface.text_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.447
!MESSAGE Missing required bundle org.eclipse.ui.workbench.texteditor_0.0.0.

!ENTRY org.eclipse.osgi 2006-04-26 23:38:20.462
!MESSAGE Application error
!STACK 1
java.lang.RuntimeException: Application "Jprim.Application" could not be
found in the registry. The applications available are: <NONE>.
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:216)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:376)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:163)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334 )
at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
at org.eclipse.core.launcher.Main.run(Main.java:973)
at org.eclipse.core.launcher.Main.main(Main.java:948)

!ENTRY org.eclipse.osgi 2006-04-26 23:38:20.478
!MESSAGE Bundle initial@reference:file:../Documents and Settings/Sebastián
Ávila/Mis documentos/Workspace/Jprim/ [20] was not resolved.
!SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.478
!MESSAGE Missing required bundle org.eclipse.ui.forms_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.478
!MESSAGE Missing required bundle org.eclipse.jface.text_0.0.0.
!SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.478
!MESSAGE Missing required bundle org.eclipse.ui.workbench.texteditor_0.0.0.
Re: I'm lost with this error!!! [message #448568 is a reply to message #448567] Wed, 26 April 2006 18:11 Go to previous messageGo to next message
Eclipse UserFriend
Sebastian,

Three plugins are missing:

- org.eclipse.ui.forms
- org.eclipse.jface.text
- org.eclipse.ui.workbench.texteditor

Those plugins are required by your Jprim plugin, which contains the
Jprim.Application. Therefore the application couldn't start.

- Neil


sebasitu wrote:

> This is the log, anyone knows the problem?

> !ENTRY org.eclipse.osgi 2006-04-26 23:38:20.447
> !MESSAGE Bundle initial@reference:file:../Documents and Settings/Sebastián
> Ávila/Mis documentos/Workspace/Jprim/ [20] was not resolved.
> !SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.447
> !MESSAGE Missing required bundle org.eclipse.ui.forms_0.0.0.
> !SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.447
> !MESSAGE Missing required bundle org.eclipse.jface.text_0.0.0.
> !SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.447
> !MESSAGE Missing required bundle org.eclipse.ui.workbench.texteditor_0.0.0.

> !ENTRY org.eclipse.osgi 2006-04-26 23:38:20.462
> !MESSAGE Application error
> !STACK 1
> java.lang.RuntimeException: Application "Jprim.Application" could not be
> found in the registry. The applications available are: <NONE>.
> at
>
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:216)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:376)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:163)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> at java.lang.reflect.Method.invoke(Unknown Source)
> at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334 )
> at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
> at org.eclipse.core.launcher.Main.run(Main.java:973)
> at org.eclipse.core.launcher.Main.main(Main.java:948)

> !ENTRY org.eclipse.osgi 2006-04-26 23:38:20.478
> !MESSAGE Bundle initial@reference:file:../Documents and Settings/Sebastián
> Ávila/Mis documentos/Workspace/Jprim/ [20] was not resolved.
> !SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.478
> !MESSAGE Missing required bundle org.eclipse.ui.forms_0.0.0.
> !SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.478
> !MESSAGE Missing required bundle org.eclipse.jface.text_0.0.0.
> !SUBENTRY 1 org.eclipse.osgi 2006-04-26 23:38:20.478
> !MESSAGE Missing required bundle org.eclipse.ui.workbench.texteditor_0.0.0.
Re: I'm lost with this error!!! [message #448569 is a reply to message #448568] Wed, 26 April 2006 19:03 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: sebsymbol.hotmail.com

Yes I know, this dependencies are included in the plugin dependencies with
others. It's strange because for example org.eclipse.ui doesn't generate
error but org.eclipse.ui.forms yes! what about the error about the path?
Re: I'm lost with this error!!! [message #448593 is a reply to message #448569] Thu, 27 April 2006 08:57 Go to previous messageGo to next message
Eclipse UserFriend
Sebasitu wrote:
> Yes I know, this dependencies are included in the plugin dependencies
> with others. It's strange because for example org.eclipse.ui doesn't
> generate error but org.eclipse.ui.forms yes! what about the error about
> the path?


How are you launching this app? The most common cause is creating an
RCP app and launching it. Then adding some more dependencies and
extenstions and trying to launch it again. If this is the case, you
would have to update the launch config with the new plugins.


Later,
PW
Re: I'm lost with this error!!! [message #448714 is a reply to message #448593] Fri, 28 April 2006 16:35 Go to previous messageGo to next message
Eclipse UserFriend
Second what pw said. Have a look at the plugin tab on you launch config menu & make sure the three "missing" plugins are checked.
Re: I'm lost with this error!!! [message #448722 is a reply to message #448714] Sun, 30 April 2006 03:26 Go to previous messageGo to next message
Eclipse UserFriend
Newer versions of eclipse have the 'Add required' button which is a bit of a lifesaver!
Re: I'm lost with this error!!! [message #448728 is a reply to message #448567] Sun, 30 April 2006 15:59 Go to previous messageGo to next message
Eclipse UserFriend
Problem with this is, is that it adds loads of plugins that aren't required. Then if you hit the 'Validate Plugin Set' button, it promptly shows you all the plugins its just added as being in error...
Re: I'm lost with this error!!! [message #448731 is a reply to message #448728] Sun, 30 April 2006 19:25 Go to previous message
Eclipse UserFriend
I've never seen it do that. You should open a bug in BugZilla against the
PDE component.

- Neil


Marcus wrote:

> Problem with this is, is that it adds loads of plugins that aren't required.
>Then if you hit the 'Validate Plugin Set' button, it promptly shows you all
the >plugins its just added as being in error...
Previous Topic:Why help system was shown in external browser?
Next Topic:Providing a SelectionProvider from within a FormPage that is part of a FormEditor
Goto Forum:
  


Current Time: Sat Jun 21 14:21:26 EDT 2025

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

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

Back to the top