Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » DSDP - Target Management » how to correctly init RSE
how to correctly init RSE [message #32205] Mon, 23 February 2009 10:07 Go to next message
Carmelo  is currently offline Carmelo Friend
Messages: 224
Registered: July 2009
Senior Member
Hi all,
I'm using my own subsystem to connect to a db in an RCP application ...

The question is what is the right wait to initialize the RSE Core library?

I have tried with

try
{
RSECorePlugin.waitForInitCompletion();
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}

ISystemRegistry sr = RSECorePlugin.getTheSystemRegistry();


but still I get the following error in the application log:




!MESSAGE While loading class
" org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner ", thread
"Thread[Worker-1,5,main]" timed out waiting (5000ms) for thread
"Thread[main,6,main]" to finish starting bundle
"update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar [988]". To avoid
deadlock, thread "Thread[Worker-1,5,main]" is proceeding but
" org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner " may not be
fully initialized.
!STACK 0
org.osgi.framework.BundleException: State change in progress for bundle
"update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar" by thread
"main".
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
at
org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
at
org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
at
org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
at
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
at
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
at
org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
Caused by:
org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
... 15 more
Root exception:
org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
at
org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
at
org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
at
org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
at
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
at
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
at
org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
Re: how to correctly init RSE [message #32342 is a reply to message #32205] Mon, 23 February 2009 14:14 Go to previous messageGo to next message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Hi Kar,

at the moment, the RSE UI / Non-UI separation has not yet proceeded
enough that you could initialize RSEcorePlugin only without also loading
RSEUIPlugin.

For now, please reference RSEUIPlugin in any way before waiting for init
completion.

Thanks,
--
Martin Oberhuber, Senior Member of Technical Staff, Wind River
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm




Kar wrote:
> Hi all,
> I'm using my own subsystem to connect to a db in an RCP application ...
>
> The question is what is the right wait to initialize the RSE Core library?
>
> I have tried with
>
> try
> {
> RSECorePlugin.waitForInitCompletion();
> }
> catch (InterruptedException e)
> {
> // TODO Auto-generated catch block
> e.printStackTrace();
> }
>
> ISystemRegistry sr = RSECorePlugin.getTheSystemRegistry();
>
>
> but still I get the following error in the application log:
>
>
>
>
> !MESSAGE While loading class
> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner ",
> thread "Thread[Worker-1,5,main]" timed out waiting (5000ms) for thread
> "Thread[main,6,main]" to finish starting bundle
> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar [988]". To
> avoid deadlock, thread "Thread[Worker-1,5,main]" is proceeding but
> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner " may
> not be fully initialized.
> !STACK 0
> org.osgi.framework.BundleException: State change in progress for bundle
> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar" by thread
> "main".
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>
> at
> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>
> at
> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>
> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
> at
> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
> Caused by:
> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>
> ... 15 more
> Root exception:
> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>
> at
> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>
> at
> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>
> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
> at
> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
>
>
>
>
Re: how to correctly init RSE [message #32377 is a reply to message #32342] Mon, 23 February 2009 14:48 Go to previous message
Carmelo  is currently offline Carmelo Friend
Messages: 224
Registered: July 2009
Senior Member
Thanks Martin


"Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
news:49A2AF61.4050603@windriver.com...
> Hi Kar,
>
> at the moment, the RSE UI / Non-UI separation has not yet proceeded enough
> that you could initialize RSEcorePlugin only without also loading
> RSEUIPlugin.
>
> For now, please reference RSEUIPlugin in any way before waiting for init
> completion.
>
> Thanks,
> --
> Martin Oberhuber, Senior Member of Technical Staff, Wind River
> Target Management Project Lead, DSDP PMC Member
> http://www.eclipse.org/dsdp/tm
>
>
>
>
> Kar wrote:
>> Hi all,
>> I'm using my own subsystem to connect to a db in an RCP application ...
>>
>> The question is what is the right wait to initialize the RSE Core
>> library?
>>
>> I have tried with
>>
>> try
>> {
>> RSECorePlugin.waitForInitCompletion();
>> }
>> catch (InterruptedException e)
>> {
>> // TODO Auto-generated catch block
>> e.printStackTrace();
>> }
>>
>> ISystemRegistry sr = RSECorePlugin.getTheSystemRegistry();
>>
>>
>> but still I get the following error in the application log:
>>
>>
>>
>>
>> !MESSAGE While loading class
>> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner ", thread
>> "Thread[Worker-1,5,main]" timed out waiting (5000ms) for thread
>> "Thread[main,6,main]" to finish starting bundle
>> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar [988]". To
>> avoid deadlock, thread "Thread[Worker-1,5,main]" is proceeding but
>> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner " may not
>> be fully initialized.
>> !STACK 0
>> org.osgi.framework.BundleException: State change in progress for bundle
>> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar" by thread
>> "main".
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>> at
>> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>> at
>> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
>> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
>> at
>> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
>> Caused by:
>> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>> ... 15 more
>> Root exception:
>> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>> at
>> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>> at
>> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
>> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
>> at
>> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
>>
>>
>>
>>
Re: how to correctly init RSE [message #579256 is a reply to message #32205] Mon, 23 February 2009 14:14 Go to previous message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Hi Kar,

at the moment, the RSE UI / Non-UI separation has not yet proceeded
enough that you could initialize RSEcorePlugin only without also loading
RSEUIPlugin.

For now, please reference RSEUIPlugin in any way before waiting for init
completion.

Thanks,
--
Martin Oberhuber, Senior Member of Technical Staff, Wind River
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm




Kar wrote:
> Hi all,
> I'm using my own subsystem to connect to a db in an RCP application ...
>
> The question is what is the right wait to initialize the RSE Core library?
>
> I have tried with
>
> try
> {
> RSECorePlugin.waitForInitCompletion();
> }
> catch (InterruptedException e)
> {
> // TODO Auto-generated catch block
> e.printStackTrace();
> }
>
> ISystemRegistry sr = RSECorePlugin.getTheSystemRegistry();
>
>
> but still I get the following error in the application log:
>
>
>
>
> !MESSAGE While loading class
> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner ",
> thread "Thread[Worker-1,5,main]" timed out waiting (5000ms) for thread
> "Thread[main,6,main]" to finish starting bundle
> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar [988]". To
> avoid deadlock, thread "Thread[Worker-1,5,main]" is proceeding but
> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner " may
> not be fully initialized.
> !STACK 0
> org.osgi.framework.BundleException: State change in progress for bundle
> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar" by thread
> "main".
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>
> at
> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>
> at
> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>
> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
> at
> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
> Caused by:
> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>
> ... 15 more
> Root exception:
> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>
> at
> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>
> at
> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>
> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
> at
> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>
> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
>
>
>
>
Re: how to correctly init RSE [message #579270 is a reply to message #32342] Mon, 23 February 2009 14:48 Go to previous message
Carmelo  is currently offline Carmelo Friend
Messages: 224
Registered: July 2009
Senior Member
Thanks Martin


"Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
news:49A2AF61.4050603@windriver.com...
> Hi Kar,
>
> at the moment, the RSE UI / Non-UI separation has not yet proceeded enough
> that you could initialize RSEcorePlugin only without also loading
> RSEUIPlugin.
>
> For now, please reference RSEUIPlugin in any way before waiting for init
> completion.
>
> Thanks,
> --
> Martin Oberhuber, Senior Member of Technical Staff, Wind River
> Target Management Project Lead, DSDP PMC Member
> http://www.eclipse.org/dsdp/tm
>
>
>
>
> Kar wrote:
>> Hi all,
>> I'm using my own subsystem to connect to a db in an RCP application ...
>>
>> The question is what is the right wait to initialize the RSE Core
>> library?
>>
>> I have tried with
>>
>> try
>> {
>> RSECorePlugin.waitForInitCompletion();
>> }
>> catch (InterruptedException e)
>> {
>> // TODO Auto-generated catch block
>> e.printStackTrace();
>> }
>>
>> ISystemRegistry sr = RSECorePlugin.getTheSystemRegistry();
>>
>>
>> but still I get the following error in the application log:
>>
>>
>>
>>
>> !MESSAGE While loading class
>> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner ", thread
>> "Thread[Worker-1,5,main]" timed out waiting (5000ms) for thread
>> "Thread[main,6,main]" to finish starting bundle
>> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar [988]". To
>> avoid deadlock, thread "Thread[Worker-1,5,main]" is proceeding but
>> " org.eclipse.rse.ui.SystemPreferencesManager$ModelChangeListe ner " may not
>> be fully initialized.
>> !STACK 0
>> org.osgi.framework.BundleException: State change in progress for bundle
>> "update@plugins/org.eclipse.rse.ui_3.0.2.v200812041720.jar" by thread
>> "main".
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>> at
>> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>> at
>> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
>> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
>> at
>> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
>> Caused by:
>> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>> ... 15 more
>> Root exception:
>> org.eclipse.osgi.framework.internal.core.AbstractBundle$Bund leStatusException
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.begi nStateChange(AbstractBundle.java:1141)
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:258)
>> at
>> org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
>> at
>> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
>> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320 )
>> at
>> org.eclipse.rse.ui.SystemPreferencesManager$1.run(SystemPref erencesManager.java:510)
>> at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
>>
>>
>>
>>
Previous Topic:Working with Synchronize as part of Export
Next Topic:Locator is null when using the APIs to start up TCF
Goto Forum:
  


Current Time: Fri Mar 29 00:37:59 GMT 2024

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

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

Back to the top