Skip to main content



      Home
Home » Eclipse Projects » Eclipse Platform » Bug in compatibility feature of M7?
Bug in compatibility feature of M7? [message #204209] Mon, 01 March 2004 14:39 Go to next message
Eclipse UserFriend
I've had people tell me that this might be a bug I need to file against
the Platform UI. Can someone tell me if this is a good idea?

I've heard a lot of different things in response to my questions about
porting my 2.1.2 plugins to 3.0 M7. I was wondering if someone could give
a rundown of exactly what my best approaches would be. Here's the
situation:

My plugins do import the org.eclipse.ui file and use some of the changed
parts. Should I change my plugin to include the import of
org.eclipse.ui.ide? Also, right now the error I get with my plugin is
this:

The selected wizard could not be started.
Reason:
Plug-in com.ibm.ws.build.plugin was unable to load class
com.ibm.ws.build.plugin.create.PluginImportWizard

Also, with M7 do I need to include org.eclipse.core.runtime.compatibility
or should it do that for me when it detects that my plugin are 2.x plugins?

In addition, if someone could explain to me how I could check to see if my
plug-in references the internals of some of the changing API's. I just
need a guideline of what to look for in my code, but I think that my
program does not do this.

Thank you so much for all the help,
Jeremiah Richardson

Below is a copy of the dependencies in my plugin.xml and the .log file
created from the error:

plugin.xml dependecies:

<requires>
<import plugin="com.ibm.ws.build.wsant" version="5.0.0"
match="compatible"/>
<import plugin="org.apache.xerces"/>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.swt"/>
<import plugin="org.eclipse.debug.core"/>
<import plugin="org.eclipse.debug.ui"/>
<import plugin="org.eclipse.jdt.launching"/>
<import plugin="org.eclipse.jdt.core"/>
<import plugin="org.eclipse.ui.externaltools"/>
</requires>


log file:

!ENTRY org.eclipse.core.runtime 4 2 Feb 23, 2004 22:38:35.53
!MESSAGE Attempt to activate a disabled plug-in: "com.ibm.ws.build.plugin".
!ENTRY org.eclipse.core.runtime 4 1 Feb 23, 2004 22:38:35.53
!MESSAGE Plug-in com.ibm.ws.build.plugin was unable to load class
com.ibm.ws.build.plugin.create.PluginImportWizard.
!STACK 0
org.osgi.framework.BundleException: Exception in
org.eclipse.core.internal.compatibility.PluginActivator.star t()
at
org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(BundleContext.java:1071)
at
org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.java:991)
at
org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:403)
at org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
at
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:133)
at
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:125)
at
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:114)
at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
at
org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java:168)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExtension(WorkbenchWizardElement.java:96)
at
org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.java:60)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNode.java:133)
at
org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java:819)
at org.eclipse.core.runtime.Platform.run(Platform.java:493)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNode.java:114)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizardNode.java:112)
at
org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage.java:96)
at
org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
at
org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
at
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
at org.eclipse.jface.window.Window.open(Window.java:627)
at
org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:149)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
at
org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(ActionContributionItem.java:536)
at
org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionItem.java:488)
at
org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContributionItem.java:420)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:257)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
at org.eclipse.core.launcher.Main.run(Main.java:742)
at org.eclipse.core.launcher.Main.main(Main.java:581)
Nested exception:
org.eclipse.core.runtime.CoreException: Attempt to activate a disabled
plug-in: "com.ibm.ws.build.plugin".
at
org.eclipse.core.internal.plugins.PluginDescriptor.throwExce ption(PluginDescriptor.java:379)
at
org.eclipse.core.internal.plugins.PluginDescriptor.pluginAct ivationEnter(PluginDescriptor.java:357)
at
org.eclipse.core.internal.plugins.PluginDescriptor.doPluginA ctivation(PluginDescriptor.java:436)
at
org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin (PluginDescriptor.java:406)
at
org.eclipse.core.internal.compatibility.PluginActivator.star t(PluginActivator.java:48)
at
org.eclipse.osgi.framework.internal.core.BundleContext$1.run (BundleContext.java:1054)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(BundleContext.java:1050)
at
org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.java:991)
at
org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:403)
at org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
at
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:133)
at
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:125)
at
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:114)
at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
at
org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java:168)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExtension(WorkbenchWizardElement.java:96)
at
org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.java:60)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNode.java:133)
at
org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java:819)
at org.eclipse.core.runtime.Platform.run(Platform.java:493)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNode.java:114)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
at
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizardNode.java:112)
at
org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage.java:96)
at
org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
at
org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
at
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
at org.eclipse.jface.window.Window.open(Window.java:627)
at
org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:149)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
at
org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(ActionContributionItem.java:536)
at
org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionItem.java:488)
at
org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContributionItem.java:420)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:257)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
at org.eclipse.core.launcher.Main.run(Main.java:742)
at org.eclipse.core.launcher.Main.main(Main.java:581)
Re: Bug in compatibility feature of M7? [message #204327 is a reply to message #204209] Mon, 01 March 2004 16:57 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jeff_mcaffer.REMOVE.ca.ibm.com

if you have the processing directive
<?eclipse version="3.0"?>
at the top of your plugin.xml then you need to require the things that you
need. There are no freebies and substitutions done for you. That means
that in your case you likely need
org.eclipse.core.runtime.compatibility
org.eclipse.ui.ide
org.eclipse.ui.... <some UI folks can fill in the rest perhaps>

Looking or references to internals. Basically look to see if you reference
any packages which have "internal" in the pacakage name (e.g.,
org.eclise.core.internal.runtime is not good for you to reference)

Jeff


"Jeremiah Richardson" <jerry_234@hotmail.com> wrote in message
news:c203i4$r9k$1@eclipse.org...
> I've had people tell me that this might be a bug I need to file against
> the Platform UI. Can someone tell me if this is a good idea?
>
> I've heard a lot of different things in response to my questions about
> porting my 2.1.2 plugins to 3.0 M7. I was wondering if someone could give
> a rundown of exactly what my best approaches would be. Here's the
> situation:
>
> My plugins do import the org.eclipse.ui file and use some of the changed
> parts. Should I change my plugin to include the import of
> org.eclipse.ui.ide? Also, right now the error I get with my plugin is
> this:
>
> The selected wizard could not be started.
> Reason:
> Plug-in com.ibm.ws.build.plugin was unable to load class
> com.ibm.ws.build.plugin.create.PluginImportWizard
>
> Also, with M7 do I need to include org.eclipse.core.runtime.compatibility
> or should it do that for me when it detects that my plugin are 2.x
plugins?
>
> In addition, if someone could explain to me how I could check to see if my
> plug-in references the internals of some of the changing API's. I just
> need a guideline of what to look for in my code, but I think that my
> program does not do this.
>
> Thank you so much for all the help,
> Jeremiah Richardson
>
> Below is a copy of the dependencies in my plugin.xml and the .log file
> created from the error:
>
> plugin.xml dependecies:
>
> <requires>
> <import plugin="com.ibm.ws.build.wsant" version="5.0.0"
> match="compatible"/>
> <import plugin="org.apache.xerces"/>
> <import plugin="org.eclipse.core.resources"/>
> <import plugin="org.eclipse.ui"/>
> <import plugin="org.eclipse.swt"/>
> <import plugin="org.eclipse.debug.core"/>
> <import plugin="org.eclipse.debug.ui"/>
> <import plugin="org.eclipse.jdt.launching"/>
> <import plugin="org.eclipse.jdt.core"/>
> <import plugin="org.eclipse.ui.externaltools"/>
> </requires>
>
>
> log file:
>
> !ENTRY org.eclipse.core.runtime 4 2 Feb 23, 2004 22:38:35.53
> !MESSAGE Attempt to activate a disabled plug-in:
"com.ibm.ws.build.plugin".
> !ENTRY org.eclipse.core.runtime 4 1 Feb 23, 2004 22:38:35.53
> !MESSAGE Plug-in com.ibm.ws.build.plugin was unable to load class
> com.ibm.ws.build.plugin.create.PluginImportWizard.
> !STACK 0
> org.osgi.framework.BundleException: Exception in
> org.eclipse.core.internal.compatibility.PluginActivator.star t()
> at
>
org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
Context.java:1071)
> at
>
org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
ava:991)
> at
>
org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
ava:403)
> at org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> at
>
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
nsion(ConfigurationElement.java:133)
> at
>
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
nsion(ConfigurationElement.java:125)
> at
>
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
nsion(ConfigurationElement.java:114)
> at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> at
>
org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
:168)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
sion(WorkbenchWizardElement.java:96)
> at
>
org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
a:60)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
e.java:133)
> at
>
org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
:819)
> at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
e.java:114)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
dNode.java:112)
> at
>
org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
..java:96)
> at
> org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> at
> org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> at
> org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> at org.eclipse.jface.window.Window.open(Window.java:627)
> at
>
org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
149)
> at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> at
>
org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
ContributionItem.java:536)
> at
>
org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
tem.java:488)
> at
>
org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
tionItem.java:420)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> at
>
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> at
>
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
java:257)
> at
>
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
>
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
)
> at
>
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
..java:25)
> at java.lang.reflect.Method.invoke(Method.java:324)
> at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> at org.eclipse.core.launcher.Main.run(Main.java:742)
> at org.eclipse.core.launcher.Main.main(Main.java:581)
> Nested exception:
> org.eclipse.core.runtime.CoreException: Attempt to activate a disabled
> plug-in: "com.ibm.ws.build.plugin".
> at
>
org.eclipse.core.internal.plugins.PluginDescriptor.throwExce ption(PluginDesc
riptor.java:379)
> at
>
org.eclipse.core.internal.plugins.PluginDescriptor.pluginAct ivationEnter(Plu
ginDescriptor.java:357)
> at
>
org.eclipse.core.internal.plugins.PluginDescriptor.doPluginA ctivation(Plugin
Descriptor.java:436)
> at
>
org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin (PluginDescripto
r.java:406)
> at
>
org.eclipse.core.internal.compatibility.PluginActivator.star t(PluginActivato
r.java:48)
> at
>
org.eclipse.osgi.framework.internal.core.BundleContext$1.run (BundleContext.j
ava:1054)
> at java.security.AccessController.doPrivileged(Native Method)
> at
>
org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
Context.java:1050)
> at
>
org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
ava:991)
> at
>
org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
ava:403)
> at org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> at
>
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
nsion(ConfigurationElement.java:133)
> at
>
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
nsion(ConfigurationElement.java:125)
> at
>
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
nsion(ConfigurationElement.java:114)
> at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> at
>
org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
:168)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
sion(WorkbenchWizardElement.java:96)
> at
>
org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
a:60)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
e.java:133)
> at
>
org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
:819)
> at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
e.java:114)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> at
>
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
dNode.java:112)
> at
>
org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
..java:96)
> at
> org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> at
> org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> at
> org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> at org.eclipse.jface.window.Window.open(Window.java:627)
> at
>
org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
149)
> at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> at
>
org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
ContributionItem.java:536)
> at
>
org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
tem.java:488)
> at
>
org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
tionItem.java:420)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> at
>
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> at
>
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
java:257)
> at
>
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
>
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
)
> at
>
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
..java:25)
> at java.lang.reflect.Method.invoke(Method.java:324)
> at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> at org.eclipse.core.launcher.Main.run(Main.java:742)
> at org.eclipse.core.launcher.Main.main(Main.java:581)
>
>
Re: Bug in compatibility feature of M7? [message #204655 is a reply to message #204327] Tue, 02 March 2004 13:36 Go to previous messageGo to next message
Eclipse UserFriend
I do not have the version tags in my plugin.xml's. I thought I was
supposed to leave them out so that M7 could detect them as legacy and add
it in for me? Any other ideas of what I should do?


Jeff McAffer wrote:

> if you have the processing directive
> <?eclipse version="3.0"?>
> at the top of your plugin.xml then you need to require the things that you
> need. There are no freebies and substitutions done for you. That means
> that in your case you likely need
> org.eclipse.core.runtime.compatibility
> org.eclipse.ui.ide
> org.eclipse.ui.... <some UI folks can fill in the rest perhaps>

> Looking or references to internals. Basically look to see if you reference
> any packages which have "internal" in the pacakage name (e.g.,
> org.eclise.core.internal.runtime is not good for you to reference)

> Jeff


> "Jeremiah Richardson" <jerry_234@hotmail.com> wrote in message
> news:c203i4$r9k$1@eclipse.org...
> > I've had people tell me that this might be a bug I need to file against
> > the Platform UI. Can someone tell me if this is a good idea?
> >
> > I've heard a lot of different things in response to my questions about
> > porting my 2.1.2 plugins to 3.0 M7. I was wondering if someone could give
> > a rundown of exactly what my best approaches would be. Here's the
> > situation:
> >
> > My plugins do import the org.eclipse.ui file and use some of the changed
> > parts. Should I change my plugin to include the import of
> > org.eclipse.ui.ide? Also, right now the error I get with my plugin is
> > this:
> >
> > The selected wizard could not be started.
> > Reason:
> > Plug-in com.ibm.ws.build.plugin was unable to load class
> > com.ibm.ws.build.plugin.create.PluginImportWizard
> >
> > Also, with M7 do I need to include org.eclipse.core.runtime.compatibility
> > or should it do that for me when it detects that my plugin are 2.x
> plugins?
> >
> > In addition, if someone could explain to me how I could check to see if my
> > plug-in references the internals of some of the changing API's. I just
> > need a guideline of what to look for in my code, but I think that my
> > program does not do this.
> >
> > Thank you so much for all the help,
> > Jeremiah Richardson
> >
> > Below is a copy of the dependencies in my plugin.xml and the .log file
> > created from the error:
> >
> > plugin.xml dependecies:
> >
> > <requires>
> > <import plugin="com.ibm.ws.build.wsant" version="5.0.0"
> > match="compatible"/>
> > <import plugin="org.apache.xerces"/>
> > <import plugin="org.eclipse.core.resources"/>
> > <import plugin="org.eclipse.ui"/>
> > <import plugin="org.eclipse.swt"/>
> > <import plugin="org.eclipse.debug.core"/>
> > <import plugin="org.eclipse.debug.ui"/>
> > <import plugin="org.eclipse.jdt.launching"/>
> > <import plugin="org.eclipse.jdt.core"/>
> > <import plugin="org.eclipse.ui.externaltools"/>
> > </requires>
> >
> >
> > log file:
> >
> > !ENTRY org.eclipse.core.runtime 4 2 Feb 23, 2004 22:38:35.53
> > !MESSAGE Attempt to activate a disabled plug-in:
> "com.ibm.ws.build.plugin".
> > !ENTRY org.eclipse.core.runtime 4 1 Feb 23, 2004 22:38:35.53
> > !MESSAGE Plug-in com.ibm.ws.build.plugin was unable to load class
> > com.ibm.ws.build.plugin.create.PluginImportWizard.
> > !STACK 0
> > org.osgi.framework.BundleException: Exception in
> > org.eclipse.core.internal.compatibility.PluginActivator.star t()
> > at
> >
> org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
> Context.java:1071)
> > at
> >
> org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
> ava:991)
> > at
> >
> org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
> ava:403)
> > at org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> > at
> >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> nsion(ConfigurationElement.java:133)
> > at
> >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> nsion(ConfigurationElement.java:125)
> > at
> >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> nsion(ConfigurationElement.java:114)
> > at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> > at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > at
> >
> org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
> :168)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
> sion(WorkbenchWizardElement.java:96)
> > at
> >
> org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
> a:60)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
> e.java:133)
> > at
> >
> org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
> :819)
> > at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
> e.java:114)
> > at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
> dNode.java:112)
> > at
> >
> org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
> ..java:96)
> > at
> > org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> > at
> > org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> > at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> > at
> > org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> > at org.eclipse.jface.window.Window.open(Window.java:627)
> > at
> >
> org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
> 149)
> > at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> > at
> >
> org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
> ContributionItem.java:536)
> > at
> >
> org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
> tem.java:488)
> > at
> >
> org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
> tionItem.java:420)
> > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> > at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> > at
> >
> org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> > at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> > at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> > at
> >
> org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
> java:257)
> > at
> >
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > at
> >
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
> )
> > at
> >
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
> ..java:25)
> > at java.lang.reflect.Method.invoke(Method.java:324)
> > at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> > at org.eclipse.core.launcher.Main.run(Main.java:742)
> > at org.eclipse.core.launcher.Main.main(Main.java:581)
> > Nested exception:
> > org.eclipse.core.runtime.CoreException: Attempt to activate a disabled
> > plug-in: "com.ibm.ws.build.plugin".
> > at
> >
> org.eclipse.core.internal.plugins.PluginDescriptor.throwExce ption(PluginDesc
> riptor.java:379)
> > at
> >
> org.eclipse.core.internal.plugins.PluginDescriptor.pluginAct ivationEnter(Plu
> ginDescriptor.java:357)
> > at
> >
> org.eclipse.core.internal.plugins.PluginDescriptor.doPluginA ctivation(Plugin
> Descriptor.java:436)
> > at
> >
> org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin (PluginDescripto
> r.java:406)
> > at
> >
> org.eclipse.core.internal.compatibility.PluginActivator.star t(PluginActivato
> r.java:48)
> > at
> >
> org.eclipse.osgi.framework.internal.core.BundleContext$1.run (BundleContext.j
> ava:1054)
> > at java.security.AccessController.doPrivileged(Native Method)
> > at
> >
> org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
> Context.java:1050)
> > at
> >
> org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
> ava:991)
> > at
> >
> org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
> ava:403)
> > at org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> > at
> >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> nsion(ConfigurationElement.java:133)
> > at
> >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> nsion(ConfigurationElement.java:125)
> > at
> >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> nsion(ConfigurationElement.java:114)
> > at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> > at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > at
> >
> org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
> :168)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
> sion(WorkbenchWizardElement.java:96)
> > at
> >
> org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
> a:60)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
> e.java:133)
> > at
> >
> org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
> :819)
> > at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
> e.java:114)
> > at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > at
> >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
> dNode.java:112)
> > at
> >
> org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
> ..java:96)
> > at
> > org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> > at
> > org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> > at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> > at
> > org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> > at org.eclipse.jface.window.Window.open(Window.java:627)
> > at
> >
> org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
> 149)
> > at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> > at
> >
> org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
> ContributionItem.java:536)
> > at
> >
> org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
> tem.java:488)
> > at
> >
> org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
> tionItem.java:420)
> > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> > at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> > at
> >
> org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> > at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> > at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> > at
> >
> org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
> java:257)
> > at
> >
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > at
> >
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
> )
> > at
> >
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
> ..java:25)
> > at java.lang.reflect.Method.invoke(Method.java:324)
> > at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> > at org.eclipse.core.launcher.Main.run(Main.java:742)
> > at org.eclipse.core.launcher.Main.main(Main.java:581)
> >
> >
Re: Bug in compatibility feature of M7? [message #204908 is a reply to message #204655] Tue, 02 March 2004 22:10 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jeff_mcaffer.REMOVE.ca.ibm.com

Try running with -console -consolelog on the command line.

In the command window (shell on unix, dos box on windows) you should get an
"osgi>" prompt. In there type "ss". Taht will summarize all the plugins
you have installed. Find yours and remember the number. It will likely
show up as being in "INSTALLED" state. You want it to be either RESOLVED or
ACTIVE. Assuming it is not, type
diag <your bundle number>
That should tell you what constraints could be resolved. Follow that around
and see if you can see anything else that is unresolved.

Jeff

"Jeremiah Richardson" <jerry_234@hotmail.com> wrote in message
news:c22k85$opn$1@eclipse.org...
> I do not have the version tags in my plugin.xml's. I thought I was
> supposed to leave them out so that M7 could detect them as legacy and add
> it in for me? Any other ideas of what I should do?
>
>
> Jeff McAffer wrote:
>
> > if you have the processing directive
> > <?eclipse version="3.0"?>
> > at the top of your plugin.xml then you need to require the things that
you
> > need. There are no freebies and substitutions done for you. That means
> > that in your case you likely need
> > org.eclipse.core.runtime.compatibility
> > org.eclipse.ui.ide
> > org.eclipse.ui.... <some UI folks can fill in the rest perhaps>
>
> > Looking or references to internals. Basically look to see if you
reference
> > any packages which have "internal" in the pacakage name (e.g.,
> > org.eclise.core.internal.runtime is not good for you to reference)
>
> > Jeff
>
>
> > "Jeremiah Richardson" <jerry_234@hotmail.com> wrote in message
> > news:c203i4$r9k$1@eclipse.org...
> > > I've had people tell me that this might be a bug I need to file
against
> > > the Platform UI. Can someone tell me if this is a good idea?
> > >
> > > I've heard a lot of different things in response to my questions about
> > > porting my 2.1.2 plugins to 3.0 M7. I was wondering if someone could
give
> > > a rundown of exactly what my best approaches would be. Here's the
> > > situation:
> > >
> > > My plugins do import the org.eclipse.ui file and use some of the
changed
> > > parts. Should I change my plugin to include the import of
> > > org.eclipse.ui.ide? Also, right now the error I get with my plugin is
> > > this:
> > >
> > > The selected wizard could not be started.
> > > Reason:
> > > Plug-in com.ibm.ws.build.plugin was unable to load class
> > > com.ibm.ws.build.plugin.create.PluginImportWizard
> > >
> > > Also, with M7 do I need to include
org.eclipse.core.runtime.compatibility
> > > or should it do that for me when it detects that my plugin are 2.x
> > plugins?
> > >
> > > In addition, if someone could explain to me how I could check to see
if my
> > > plug-in references the internals of some of the changing API's. I
just
> > > need a guideline of what to look for in my code, but I think that my
> > > program does not do this.
> > >
> > > Thank you so much for all the help,
> > > Jeremiah Richardson
> > >
> > > Below is a copy of the dependencies in my plugin.xml and the .log file
> > > created from the error:
> > >
> > > plugin.xml dependecies:
> > >
> > > <requires>
> > > <import plugin="com.ibm.ws.build.wsant" version="5.0.0"
> > > match="compatible"/>
> > > <import plugin="org.apache.xerces"/>
> > > <import plugin="org.eclipse.core.resources"/>
> > > <import plugin="org.eclipse.ui"/>
> > > <import plugin="org.eclipse.swt"/>
> > > <import plugin="org.eclipse.debug.core"/>
> > > <import plugin="org.eclipse.debug.ui"/>
> > > <import plugin="org.eclipse.jdt.launching"/>
> > > <import plugin="org.eclipse.jdt.core"/>
> > > <import plugin="org.eclipse.ui.externaltools"/>
> > > </requires>
> > >
> > >
> > > log file:
> > >
> > > !ENTRY org.eclipse.core.runtime 4 2 Feb 23, 2004 22:38:35.53
> > > !MESSAGE Attempt to activate a disabled plug-in:
> > "com.ibm.ws.build.plugin".
> > > !ENTRY org.eclipse.core.runtime 4 1 Feb 23, 2004 22:38:35.53
> > > !MESSAGE Plug-in com.ibm.ws.build.plugin was unable to load class
> > > com.ibm.ws.build.plugin.create.PluginImportWizard.
> > > !STACK 0
> > > org.osgi.framework.BundleException: Exception in
> > > org.eclipse.core.internal.compatibility.PluginActivator.star t()
> > > at
> > >
> >
org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
> > Context.java:1071)
> > > at
> > >
> >
org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
> > ava:991)
> > > at
> > >
> >
org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
> > ava:403)
> > > at
org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> > > at
> > >
> >
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > nsion(ConfigurationElement.java:133)
> > > at
> > >
> >
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > nsion(ConfigurationElement.java:125)
> > > at
> > >
> >
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > nsion(ConfigurationElement.java:114)
> > > at
org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> > > at
org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > at
> > >
> >
org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
> > :168)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
> > sion(WorkbenchWizardElement.java:96)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
> > a:60)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
> > e.java:133)
> > > at
> > >
> >
org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
> > :819)
> > > at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
> > e.java:114)
> > > at
org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
> > dNode.java:112)
> > > at
> > >
> >
org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
> > ..java:96)
> > > at
> > >
org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> > > at
> > >
org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> > > at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> > > at
> > >
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > at
org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> > > at org.eclipse.jface.window.Window.open(Window.java:627)
> > > at
> > >
> >
org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
> > 149)
> > > at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> > > at
> > >
> >
org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
> > ContributionItem.java:536)
> > > at
> > >
> >
org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
> > tem.java:488)
> > > at
> > >
> >
org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
> > tionItem.java:420)
> > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > at
org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> > > at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> > > at
> > >
> >
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> > > at
org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> > > at
org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> > > at
> > >
> >
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
> > java:257)
> > > at
> > >
> >
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > > at
> > >
> >
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
> > )
> > > at
> > >
> >
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
> > ..java:25)
> > > at java.lang.reflect.Method.invoke(Method.java:324)
> > > at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> > > at org.eclipse.core.launcher.Main.run(Main.java:742)
> > > at org.eclipse.core.launcher.Main.main(Main.java:581)
> > > Nested exception:
> > > org.eclipse.core.runtime.CoreException: Attempt to activate a disabled
> > > plug-in: "com.ibm.ws.build.plugin".
> > > at
> > >
> >
org.eclipse.core.internal.plugins.PluginDescriptor.throwExce ption(PluginDesc
> > riptor.java:379)
> > > at
> > >
> >
org.eclipse.core.internal.plugins.PluginDescriptor.pluginAct ivationEnter(Plu
> > ginDescriptor.java:357)
> > > at
> > >
> >
org.eclipse.core.internal.plugins.PluginDescriptor.doPluginA ctivation(Plugin
> > Descriptor.java:436)
> > > at
> > >
> >
org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin (PluginDescripto
> > r.java:406)
> > > at
> > >
> >
org.eclipse.core.internal.compatibility.PluginActivator.star t(PluginActivato
> > r.java:48)
> > > at
> > >
> >
org.eclipse.osgi.framework.internal.core.BundleContext$1.run (BundleContext.j
> > ava:1054)
> > > at java.security.AccessController.doPrivileged(Native Method)
> > > at
> > >
> >
org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
> > Context.java:1050)
> > > at
> > >
> >
org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
> > ava:991)
> > > at
> > >
> >
org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
> > ava:403)
> > > at
org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> > > at
> > >
> >
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > nsion(ConfigurationElement.java:133)
> > > at
> > >
> >
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > nsion(ConfigurationElement.java:125)
> > > at
> > >
> >
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > nsion(ConfigurationElement.java:114)
> > > at
org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> > > at
org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > at
> > >
> >
org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
> > :168)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
> > sion(WorkbenchWizardElement.java:96)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
> > a:60)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
> > e.java:133)
> > > at
> > >
> >
org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
> > :819)
> > > at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
> > e.java:114)
> > > at
org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > at
> > >
> >
org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
> > dNode.java:112)
> > > at
> > >
> >
org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
> > ..java:96)
> > > at
> > >
org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> > > at
> > >
org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> > > at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> > > at
> > >
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > at
org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> > > at org.eclipse.jface.window.Window.open(Window.java:627)
> > > at
> > >
> >
org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
> > 149)
> > > at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> > > at
> > >
> >
org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
> > ContributionItem.java:536)
> > > at
> > >
> >
org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
> > tem.java:488)
> > > at
> > >
> >
org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
> > tionItem.java:420)
> > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > at
org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> > > at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> > > at
> > >
> >
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> > > at
org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> > > at
org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> > > at
> > >
> >
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
> > java:257)
> > > at
> > >
> >
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > > at
> > >
> >
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
> > )
> > > at
> > >
> >
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
> > ..java:25)
> > > at java.lang.reflect.Method.invoke(Method.java:324)
> > > at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> > > at org.eclipse.core.launcher.Main.run(Main.java:742)
> > > at org.eclipse.core.launcher.Main.main(Main.java:581)
> > >
> > >
>
>
Re: Bug in compatibility feature of M7? [message #205223 is a reply to message #204908] Wed, 03 March 2004 09:00 Go to previous message
Eclipse UserFriend
I tried this but all my plugins appeared in the resolved or active states
and yet I'm still getting the same error. Is there anything else I can
try to break down this problem some more?

Jeremiah Richardson

Jeff McAffer wrote:

> Try running with -console -consolelog on the command line.

> In the command window (shell on unix, dos box on windows) you should get an
> "osgi>" prompt. In there type "ss". Taht will summarize all the plugins
> you have installed. Find yours and remember the number. It will likely
> show up as being in "INSTALLED" state. You want it to be either RESOLVED or
> ACTIVE. Assuming it is not, type
> diag <your bundle number>
> That should tell you what constraints could be resolved. Follow that around
> and see if you can see anything else that is unresolved.

> Jeff

> "Jeremiah Richardson" <jerry_234@hotmail.com> wrote in message
> news:c22k85$opn$1@eclipse.org...
> > I do not have the version tags in my plugin.xml's. I thought I was
> > supposed to leave them out so that M7 could detect them as legacy and add
> > it in for me? Any other ideas of what I should do?
> >
> >
> > Jeff McAffer wrote:
> >
> > > if you have the processing directive
> > > <?eclipse version="3.0"?>
> > > at the top of your plugin.xml then you need to require the things that
> you
> > > need. There are no freebies and substitutions done for you. That means
> > > that in your case you likely need
> > > org.eclipse.core.runtime.compatibility
> > > org.eclipse.ui.ide
> > > org.eclipse.ui.... <some UI folks can fill in the rest perhaps>
> >
> > > Looking or references to internals. Basically look to see if you
> reference
> > > any packages which have "internal" in the pacakage name (e.g.,
> > > org.eclise.core.internal.runtime is not good for you to reference)
> >
> > > Jeff
> >
> >
> > > "Jeremiah Richardson" <jerry_234@hotmail.com> wrote in message
> > > news:c203i4$r9k$1@eclipse.org...
> > > > I've had people tell me that this might be a bug I need to file
> against
> > > > the Platform UI. Can someone tell me if this is a good idea?
> > > >
> > > > I've heard a lot of different things in response to my questions about
> > > > porting my 2.1.2 plugins to 3.0 M7. I was wondering if someone could
> give
> > > > a rundown of exactly what my best approaches would be. Here's the
> > > > situation:
> > > >
> > > > My plugins do import the org.eclipse.ui file and use some of the
> changed
> > > > parts. Should I change my plugin to include the import of
> > > > org.eclipse.ui.ide? Also, right now the error I get with my plugin is
> > > > this:
> > > >
> > > > The selected wizard could not be started.
> > > > Reason:
> > > > Plug-in com.ibm.ws.build.plugin was unable to load class
> > > > com.ibm.ws.build.plugin.create.PluginImportWizard
> > > >
> > > > Also, with M7 do I need to include
> org.eclipse.core.runtime.compatibility
> > > > or should it do that for me when it detects that my plugin are 2.x
> > > plugins?
> > > >
> > > > In addition, if someone could explain to me how I could check to see
> if my
> > > > plug-in references the internals of some of the changing API's. I
> just
> > > > need a guideline of what to look for in my code, but I think that my
> > > > program does not do this.
> > > >
> > > > Thank you so much for all the help,
> > > > Jeremiah Richardson
> > > >
> > > > Below is a copy of the dependencies in my plugin.xml and the .log file
> > > > created from the error:
> > > >
> > > > plugin.xml dependecies:
> > > >
> > > > <requires>
> > > > <import plugin="com.ibm.ws.build.wsant" version="5.0.0"
> > > > match="compatible"/>
> > > > <import plugin="org.apache.xerces"/>
> > > > <import plugin="org.eclipse.core.resources"/>
> > > > <import plugin="org.eclipse.ui"/>
> > > > <import plugin="org.eclipse.swt"/>
> > > > <import plugin="org.eclipse.debug.core"/>
> > > > <import plugin="org.eclipse.debug.ui"/>
> > > > <import plugin="org.eclipse.jdt.launching"/>
> > > > <import plugin="org.eclipse.jdt.core"/>
> > > > <import plugin="org.eclipse.ui.externaltools"/>
> > > > </requires>
> > > >
> > > >
> > > > log file:
> > > >
> > > > !ENTRY org.eclipse.core.runtime 4 2 Feb 23, 2004 22:38:35.53
> > > > !MESSAGE Attempt to activate a disabled plug-in:
> > > "com.ibm.ws.build.plugin".
> > > > !ENTRY org.eclipse.core.runtime 4 1 Feb 23, 2004 22:38:35.53
> > > > !MESSAGE Plug-in com.ibm.ws.build.plugin was unable to load class
> > > > com.ibm.ws.build.plugin.create.PluginImportWizard.
> > > > !STACK 0
> > > > org.osgi.framework.BundleException: Exception in
> > > > org.eclipse.core.internal.compatibility.PluginActivator.star t()
> > > > at
> > > >
> > >
> org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
> > > Context.java:1071)
> > > > at
> > > >
> > >
> org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
> > > ava:991)
> > > > at
> > > >
> > >
> org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
> > > ava:403)
> > > > at
> org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > > nsion(ConfigurationElement.java:133)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > > nsion(ConfigurationElement.java:125)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > > nsion(ConfigurationElement.java:114)
> > > > at
> org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> > > > at
> org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
> > > :168)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
> > > sion(WorkbenchWizardElement.java:96)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
> > > a:60)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
> > > e.java:133)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
> > > :819)
> > > > at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
> > > e.java:114)
> > > > at
> org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
> > > dNode.java:112)
> > > > at
> > > >
> > >
> org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
> > > ..java:96)
> > > > at
> > > >
> org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> > > > at
> > > >
> org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> > > > at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> > > > at
> > > >
> org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> > > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > > at
> org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > > at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> > > > at org.eclipse.jface.window.Window.open(Window.java:627)
> > > > at
> > > >
> > >
> org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
> > > 149)
> > > > at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> > > > at
> > > >
> > >
> org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
> > > ContributionItem.java:536)
> > > > at
> > > >
> > >
> org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
> > > tem.java:488)
> > > > at
> > > >
> > >
> org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
> > > tionItem.java:420)
> > > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > > at
> org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > > at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> > > > at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> > > > at
> org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> > > > at
> org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
> > > java:257)
> > > > at
> > > >
> > >
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> > > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > > > at
> > > >
> > >
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
> > > )
> > > > at
> > > >
> > >
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
> > > ..java:25)
> > > > at java.lang.reflect.Method.invoke(Method.java:324)
> > > > at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> > > > at org.eclipse.core.launcher.Main.run(Main.java:742)
> > > > at org.eclipse.core.launcher.Main.main(Main.java:581)
> > > > Nested exception:
> > > > org.eclipse.core.runtime.CoreException: Attempt to activate a disabled
> > > > plug-in: "com.ibm.ws.build.plugin".
> > > > at
> > > >
> > >
> org.eclipse.core.internal.plugins.PluginDescriptor.throwExce ption(PluginDesc
> > > riptor.java:379)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.plugins.PluginDescriptor.pluginAct ivationEnter(Plu
> > > ginDescriptor.java:357)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.plugins.PluginDescriptor.doPluginA ctivation(Plugin
> > > Descriptor.java:436)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin (PluginDescripto
> > > r.java:406)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.compatibility.PluginActivator.star t(PluginActivato
> > > r.java:48)
> > > > at
> > > >
> > >
> org.eclipse.osgi.framework.internal.core.BundleContext$1.run (BundleContext.j
> > > ava:1054)
> > > > at java.security.AccessController.doPrivileged(Native Method)
> > > > at
> > > >
> > >
> org.eclipse.osgi.framework.internal.core.BundleContext.start Activator(Bundle
> > > Context.java:1050)
> > > > at
> > > >
> > >
> org.eclipse.osgi.framework.internal.core.BundleContext.start (BundleContext.j
> > > ava:991)
> > > > at
> > > >
> > >
> org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.j
> > > ava:403)
> > > > at
> org.eclipse.osgi.framework.internal.core.Bundle.start(Bundle .java:312)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > > nsion(ConfigurationElement.java:133)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > > nsion(ConfigurationElement.java:125)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExte
> > > nsion(ConfigurationElement.java:114)
> > > > at
> org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugi n.java:171)
> > > > at
> org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.WorkbenchPlugin.createExtension(Work benchPlugin.java
> > > :168)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardElement.creat eExecutableExten
> > > sion(WorkbenchWizardElement.java:96)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.ImportWizard$1.createWizard( ImportWizard.jav
> > > a:60)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$2.run(Wo rkbenchWizardNod
> > > e.java:133)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java
> > > :819)
> > > > at org.eclipse.core.runtime.Platform.run(Platform.java:493)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode$1.run(Wo rkbenchWizardNod
> > > e.java:114)
> > > > at
> org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:84)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.dialogs.WorkbenchWizardNode.getWizar d(WorkbenchWizar
> > > dNode.java:112)
> > > > at
> > > >
> > >
> org.eclipse.jface.wizard.WizardSelectionPage.getNextPage(Wiz ardSelectionPage
> > > ..java:96)
> > > > at
> > > >
> org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDial og.java:677)
> > > > at
> > > >
> org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDi alog.java:316)
> > > > at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.jav a:402)
> > > > at
> > > >
> org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListe ner.java:89)
> > > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > > at
> org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > > at org.eclipse.jface.window.Window.runEventLoop(Window.java:647 )
> > > > at org.eclipse.jface.window.Window.open(Window.java:627)
> > > > at
> > > >
> > >
> org.eclipse.ui.actions.ImportResourcesAction.run(ImportResou rcesAction.java:
> > > 149)
> > > > at org.eclipse.jface.action.Action.runWithEvent(Action.java:881 )
> > > > at
> > > >
> > >
> org.eclipse.jface.action.ActionContributionItem.handleWidget Selection(Action
> > > ContributionItem.java:536)
> > > > at
> > > >
> > >
> org.eclipse.jface.action.ActionContributionItem.access$2(Act ionContributionI
> > > tem.java:488)
> > > > at
> > > >
> > >
> org.eclipse.jface.action.ActionContributionItem$5.handleEven t(ActionContribu
> > > tionItem.java:420)
> > > > at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :82)
> > > > at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833)
> > > > at
> org.eclipse.swt.widgets.Display.runDeferredEvents(Display.ja va:2348)
> > > > at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2029)
> > > > at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1550)
> > > > at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526)
> > > > at
> > > >
> > >
> org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:265)
> > > > at
> org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:139)
> > > > at
> org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:47)
> > > > at
> > > >
> > >
> org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.
> > > java:257)
> > > > at
> > > >
> > >
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:104)
> > > > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > > > at
> > > >
> > >
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39
> > > )
> > > > at
> > > >
> > >
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl
> > > ..java:25)
> > > > at java.lang.reflect.Method.invoke(Method.java:324)
> > > > at org.eclipse.core.launcher.Main.basicRun(Main.java:279)
> > > > at org.eclipse.core.launcher.Main.run(Main.java:742)
> > > > at org.eclipse.core.launcher.Main.main(Main.java:581)
> > > >
> > > >
> >
> >
Previous Topic:error starting 3M7 (I do have 1.4 VM)
Next Topic:utf-8
Goto Forum:
  


Current Time: Wed Jul 23 16:13:52 EDT 2025

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

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

Back to the top