Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Riena » RAP with Riena Remote Service Support(how we can implement or consume services through Riena in RAP)
RAP with Riena Remote Service Support [message #488818] Wed, 30 September 2009 12:17 Go to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hai,

We have just started to design a project using Riena as RCP and web as RAP. And we created sample project in Riena with Remote Services. And successfully implemented client and server part in RienaRCP.

Server:
IUserManagement service = new UserManagement();
context.registerService(IUserManagement.class.getName(), service, null);
Publish.service(IUserManagement.class).usingPath("/IUserManagementService ")
.withProtocol("hessian").andStart(context);

System.out.println("IUserManagementService is registered");


Client Riena:
UserManagementTarget userManagementTarget = new UserManagementTarget();
Inject.service(IUserManagement.class).into(userManagementTar get).andStart(context);
RemoteServiceFactory rsf = new RemoteServiceFactory();
rsf.createAndRegisterProxy(IUserManagement.class,
"http://127.0.0.1/hessian/IUserManagementService", "hessian",
context);
userManagement = userManagementTarget.getUserManagement();

These code are written inside Activator.start() method. And Riena RCP Activator works fine. But same code in RAP Activator is not working.



Regards
Hemanth M S

[Updated on: Wed, 30 September 2009 12:53]

Report message to a moderator

Re: RAP with Riena Remote Service Support [message #488852 is a reply to message #488818] Wed, 30 September 2009 13:48 Go to previous messageGo to next message
Stefan Liebig is currently offline Stefan LiebigFriend
Messages: 124
Registered: July 2009
Senior Member
Hi Hemanth,

When running with RAP this means that the Riena Client code is running
on the server?
What exactly happens? Exceptions, logs, ..

Tschüß,
Stefan

Hemanth M S wrote:
> Hai,
>
> We have just started to design a project using Riena as RCP and web as
> RAP. And we created sample project in Riena with Remote Services. And
> successfully implemented client and server part in RienaRCP.
> Server:
> IUserManagement service = new UserManagement();
> context.registerService(IUserManagement.class.getName(),
> service, null);
>
> Publish.service(IUserManagement.class).usingPath("/IUserManagementService
> ")
> .withProtocol("hessian").andStart(context);
>
> System.out.println("IUserManagementSerice is registered");
>
> Client Riena:
> UserManagementTarget userManagementTarget = new UserManagementTarget();
> Inject.service(IUserManagement.class).into(userManagementTar
> get).andStart(context);
> RemoteServiceFactory rsf = new RemoteServiceFactory();
> rsf.createAndRegisterProxy(IUserManagement.class,
> "http://127.0.0.1/hessian/IUserManagementService",
> "hessian",
> context);
> userManagement = userManagementTarget.getUserManagement();
>
> These code are written inside Activator.start() method. And Riena RCP
> Activator works fine. But same code in RAP Activator is not working.
>
>
>
> Regards
> Hemanth M S
Re: RAP with Riena Remote Service Support [message #488981 is a reply to message #488852] Thu, 01 October 2009 04:14 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Stefan,

Yes Riena client is running. Sad


org.osgi.framework.BundleException: Exception in org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:805)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:754)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:353)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu me(AbstractBundle.java:370)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBun dle(Framework.java:1068)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.r esumeBundles(StartLevelManager.java:557)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.i ncFWSL(StartLevelManager.java:464)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d oSetStartLevel(StartLevelManager.java:248)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d ispatchEvent(StartLevelManager.java:445)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve nt(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread .run(EventManager.java:330)
Caused by: java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to create proxy for protocol=hessian url=http://localhost/hessian/IUserManagementService interface=org.user.mgmt.common.services.IUserManagement
at org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
at $Proxy11.getAllUserBeans(Unknown Source)
at org.user.mgmt.rap.Activator.start(Activator.java:46)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1 .run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:773)
... 10 more
Root exception:
java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to create proxy for protocol=hessian url=http://localhost/hessian/IUserManagementService interface=org.user.mgmt.common.services.IUserManagement
at org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
at $Proxy11.getAllUserBeans(Unknown Source)
at org.user.mgmt.rap.Activator.start(Activator.java:46)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1 .run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:773)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:754)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:353)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu me(AbstractBundle.java:370)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBun dle(Framework.java:1068)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.r esumeBundles(StartLevelManager.java:557)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.i ncFWSL(StartLevelManager.java:464)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d oSetStartLevel(StartLevelManager.java:248)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d ispatchEvent(StartLevelManager.java:445)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve nt(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread .run(EventManager.java:330)
Thu Oct 01 09:34:55 IST 2009 ERROR [Framework Event Dispatcher] null FrameworkEvent ERROR
org.osgi.framework.BundleException: Exception in org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:805)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:754)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:353)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu me(AbstractBundle.java:370)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBun dle(Framework.java:1068)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.r esumeBundles(StartLevelManager.java:557)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.i ncFWSL(StartLevelManager.java:464)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d oSetStartLevel(StartLevelManager.java:248)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d ispatchEvent(StartLevelManager.java:445)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve nt(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread .run(EventManager.java:330)
Caused by: java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to create proxy for protocol=hessian url=http://localhost/hessian/IUserManagementService interface=org.user.mgmt.common.services.IUserManagementThu Oct 01 09:34:55 IST 2009 INFO [Start Level Event Dispatcher] null {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47} ServiceEvent REGISTERED

at org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
at $Proxy11.getAllUserBeans(Unknown Source)
at org.user.mgmt.rap.Activator.start(Activator.java:46)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1 .run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:773)
... 10 more




Regards

Hemanth M S
Re: RAP with Riena Remote Service Support [message #488982 is a reply to message #488981] Thu, 01 October 2009 05:47 Go to previous messageGo to next message
Stefan Liebig is currently offline Stefan LiebigFriend
Messages: 124
Registered: July 2009
Senior Member
Hi Hemanth,

One reason for this problem could be that the bundle
org.eclipse.riena.communication.factory.hessian is missing. Can you
check that?

Tschüß,
Stefan

Hemanth M S wrote:
> Hi Stefan,
>
> Yes Riena client is running. :(
>
> org.osgi.framework.BundleException: Exception in
> org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:805)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tart(BundleContextImpl.java:754)
> at org.eclipse.osgi.framework.internal.core.BundleHost.startWor
> ker(BundleHost.java:353)
> at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu
> me(AbstractBundle.java:370)
> at org.eclipse.osgi.framework.internal.core.Framework.resumeBun
> dle(Framework.java:1068)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.r
> esumeBundles(StartLevelManager.java:557)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.i
> ncFWSL(StartLevelManager.java:464)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> oSetStartLevel(StartLevelManager.java:248)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> ispatchEvent(StartLevelManager.java:445)
> at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve
> nt(EventManager.java:220)
> at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread
> .run(EventManager.java:330)
> Caused by: java.lang.RuntimeException: LazyProxy: missing
> IRemoteServiceFactory to create proxy for protocol=hessian
> url=http://localhost/hessian/IUserManagementService
> interface=org.user.mgmt.common.services.IUserManagement
> at org.eclipse.riena.communication.core.factory.RemoteServiceFa
> ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
> at $Proxy11.getAllUserBeans(Unknown Source)
> at org.user.mgmt.rap.Activator.start(Activator.java:46)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1
> .run(BundleContextImpl.java:782)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:773)
> ... 10 more
> Root exception:
> java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to
> create proxy for protocol=hessian
> url=http://localhost/hessian/IUserManagementService
> interface=org.user.mgmt.common.services.IUserManagement
> at org.eclipse.riena.communication.core.factory.RemoteServiceFa
> ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
> at $Proxy11.getAllUserBeans(Unknown Source)
> at org.user.mgmt.rap.Activator.start(Activator.java:46)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1
> .run(BundleContextImpl.java:782)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:773)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tart(BundleContextImpl.java:754)
> at org.eclipse.osgi.framework.internal.core.BundleHost.startWor
> ker(BundleHost.java:353)
> at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu
> me(AbstractBundle.java:370)
> at org.eclipse.osgi.framework.internal.core.Framework.resumeBun
> dle(Framework.java:1068)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.r
> esumeBundles(StartLevelManager.java:557)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.i
> ncFWSL(StartLevelManager.java:464)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> oSetStartLevel(StartLevelManager.java:248)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> ispatchEvent(StartLevelManager.java:445)
> at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve
> nt(EventManager.java:220)
> at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread
> .run(EventManager.java:330)
> Thu Oct 01 09:34:55 IST 2009 ERROR [Framework Event Dispatcher] null
> FrameworkEvent ERROR
> org.osgi.framework.BundleException: Exception in
> org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:805)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tart(BundleContextImpl.java:754)
> at org.eclipse.osgi.framework.internal.core.BundleHost.startWor
> ker(BundleHost.java:353)
> at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu
> me(AbstractBundle.java:370)
> at org.eclipse.osgi.framework.internal.core.Framework.resumeBun
> dle(Framework.java:1068)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.r
> esumeBundles(StartLevelManager.java:557)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.i
> ncFWSL(StartLevelManager.java:464)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> oSetStartLevel(StartLevelManager.java:248)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> ispatchEvent(StartLevelManager.java:445)
> at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve
> nt(EventManager.java:220)
> at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread
> .run(EventManager.java:330)
> Caused by: java.lang.RuntimeException: LazyProxy: missing
> IRemoteServiceFactory to create proxy for protocol=hessian
> url=http://localhost/hessian/IUserManagementService
> interface=org.user.mgmt.common.services.IUserManagementThu Oct 01
> 09:34:55 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47}
> ServiceEvent REGISTERED
>
> at org.eclipse.riena.communication.core.factory.RemoteServiceFa
> ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
> at $Proxy11.getAllUserBeans(Unknown Source)
> at org.user.mgmt.rap.Activator.start(Activator.java:46)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1
> .run(BundleContextImpl.java:782)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:773)
> ... 10 more
>
>
>
>
> Regards
>
> Hemanth M S
Re: RAP with Riena Remote Service Support [message #488984 is a reply to message #488982] Thu, 01 October 2009 06:12 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Stefan,

Smile Yes you are right. Now that error has gone. But now comes The "page cannot be displayed...". And log is as follows

osgi> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null {org.osgi.service.log.LogReaderService, org.eclipse.equinox.log.ExtendedLogReaderService}={service.i d=43} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null {org.osgi.service.log.LogService, org.eclipse.equinox.log.ExtendedLogService}={service.id=45} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] org.eclipse.riena.internal.core.StartupsSafeRunnable Startup: 'org.eclipse.equinox.log' succesful.
Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01 11:32:52 IST 2009 (1254376972359 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No stage information set.)
Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration DeferredLogEvent on Thu Oct 01 11:32:52 IST 2009 (1254376972406 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No configuration given!.)
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found protocol [hessian] org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @1162a9c
Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null {org.user.mgmt.common.services.IUserManagement}={service.url =http://localhost/hessian/IUserManagementService, service.protocol=hessian, service.id=46} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 DEBUG [Start Level Event Dispatcher] org.eclipse.riena.internal.communication.core.registry.Remot eServiceRegistry OSGi NEW service registered id: org.user.mgmt.common.services.IUserManagement
[Lorg.user.mgmt.common.beans.UserBean;@1abcd9b
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTLEVEL CHANGED

ss

Framework is launched.

id State Bundle
0 ACTIVE org.eclipse.osgi_3.5.100.v20090803
Fragments=91, 92, 99
3 ACTIVE org.eclipse.equinox.app_1.2.0.v20090520-1800
5 ACTIVE org.eclipse.equinox.registry_3.4.100.v20090520-1800
Fragments=83
7 ACTIVE org.eclipse.core.expressions_3.4.100.v20090429-1800
14 ACTIVE org.eclipse.core.databinding_1.2.0.I20090630-0800
15 ACTIVE org.eclipse.rap.rwt_1.3.0.20090817-1725
Fragments=40
23 ACTIVE org.eclipse.core.jobs_3.4.100.v20090429-1800
28 ACTIVE org.eclipse.equinox.common_3.5.100.v20090727
29 ACTIVE com.ibm.icu.base_4.0.1.v20090415
32 ACTIVE org.eclipse.equinox.http.registry_1.0.200.v20090520-1800
34 ACTIVE org.eclipse.core.commands_3.5.0.I20090525-2000
37 ACTIVE org.eclipse.core.databinding.property_1.2.0.I20090630-0800
38 ACTIVE org.eclipse.rap.ui_1.3.0.20090817-1725
39 ACTIVE org.eclipse.rap.jface_1.3.0.20090817-1725
40 RESOLVED org.eclipse.rap.rwt.q07_1.3.0.20090817-1725
Master=15
44 ACTIVE org.eclipse.rap.ui.workbench_1.3.0.20090817-1725
48 ACTIVE org.eclipse.core.databinding.observable_1.2.0.I20090630-0800
54 ACTIVE org.eclipse.core.runtime_3.5.100.v20090629
55 ACTIVE org.user.mgmt.rap_1.0.0.qualifier
60 ACTIVE org.user.mgmt.common_1.0.0.qualifier
80 ACTIVE org.eclipse.help_3.4.0.v20090526
81 ACTIVE org.eclipse.swt_3.5.0.v3550b
Fragments=93
82 ACTIVE org.eclipse.ui.workbench_3.5.0.I20090603-2000
83 RESOLVED org.eclipse.core.runtime.compatibility.registry_3.2.200.v200 90429-1800
Master=5
84 ACTIVE javax.servlet_2.5.0.v200806031605
85 ACTIVE org.eclipse.ui_3.5.0.I20090604-2000
86 ACTIVE org.eclipse.core.variables_3.2.200.v20090521
87 ACTIVE org.eclipse.jface.databinding_1.3.0.I20090525-2000
88 ACTIVE org.eclipse.equinox.preferences_3.2.300.v20090520-1800
89 ACTIVE org.eclipse.core.contenttype_3.4.0.v20090429-1800
90 ACTIVE org.eclipse.jface_3.5.0.I20090525-2000
91 RESOLVED org.eclipse.persistence.jpa.equinox.weaving_1.1.2.v20090612- r4475
Master=0
92 RESOLVED org.eclipse.equinox.transforms.hook_1.0.100.v20090520-1800
Master=0
93 RESOLVED org.eclipse.swt.win32.win32.x86_3.5.0.v3550b
Master=81
94 ACTIVE org.eclipse.riena.communication.core_1.2.0.200908210731NGT
95 ACTIVE com.caucho.hessian_3.1.3
96 ACTIVE org.eclipse.riena.core_1.2.0.200908210731NGT
97 ACTIVE org.eclipse.osgi.services_3.2.0.v20090520-1800
98 ACTIVE org.eclipse.equinox.log_1.2.0.v20090520-1800
99 RESOLVED javax.transaction_1.1.1.v200909161740
Master=0
106 ACTIVE org.eclipse.riena.communication.factory.hessian_1.2.0.200908 210731NGT


And I am very thankful for your kind response...

Regards
Hemanth M S

[Updated on: Thu, 01 October 2009 06:14]

Report message to a moderator

Re: RAP with Riena Remote Service Support [message #488993 is a reply to message #488984] Thu, 01 October 2009 07:05 Go to previous messageGo to next message
Stefan Liebig is currently offline Stefan LiebigFriend
Messages: 124
Registered: July 2009
Senior Member
Hi Hemanth,

Nice! The log looks fine so far. ;-)
But what is this "page cannot be displayed"? Is it an exception, log
message or a dialog?

Tschüß,
Stefan

Hemanth M S wrote:
> Hi Stefan,
>
> :) Yes you are right. Now that error has gone. But now comes The "page
> cannot be displayed...". And log is as follows
>
> osgi> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher]
> null {org.osgi.service.log.LogReaderService,
> org.eclipse.equinox.log.ExtendedLogReaderService}={service.i d=43}
> ServiceEvent REGISTERED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> {org.osgi.service.log.LogService,
> org.eclipse.equinox.log.ExtendedLogService}={service.id=45} ServiceEvent
> REGISTERED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher]
> org.eclipse.riena.internal.core.StartupsSafeRunnable Startup:
> 'org.eclipse.equinox.log' succesful.
> Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01
> 11:32:52 IST 2009 (1254376972359 ms) in thread [Start Level Event
> Dispatcher]:
> LogLevel(INFO), Message(No stage information set.)
> Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration
> DeferredLogEvent on Thu Oct 01 11:32:52 IST 2009 (1254376972406 ms) in
> thread [Start Level Event Dispatcher]:
> LogLevel(INFO), Message(No configuration given!.)
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher]
> org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found
> protocol [hessian]
> mailto: org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @1162a9c
>
> Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.user.mgmt.common.services.IUserManagement}={service.url
> =http://localhost/hessian/IUserManagementService,
> service.protocol=hessian, service.id=46} ServiceEvent REGISTERED
> Thu Oct 01 11:32:52 IST 2009 DEBUG [Start Level Event Dispatcher]
> org.eclipse.riena.internal.communication.core.registry.Remot
> eServiceRegistry OSGi NEW service registered id:
> org.user.mgmt.common.services.IUserManagement
> [Lorg.user.mgmt.common.beans.UserBean;@1abcd9b
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47}
> ServiceEvent REGISTERED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTLEVEL CHANGED
>
>
> And I am very thankful for your kind response...
>
> Regards
> Hemanth M S
Re: RAP with Riena Remote Service Support [message #489000 is a reply to message #488993] Thu, 01 October 2009 08:05 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Stefan,

Ok I got it. It is because of server is not started. I forgot to select server bundle. After selection

org.eclipse.equinox.http.jetty
org.mortbay.jetty.server
org.mortbay.jetty.util


Now I got the page with following log.


osgi> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null {org.osgi.service.log.LogService, org.eclipse.equinox.log.ExtendedLogService}={service.id=48} ServiceEvent REGISTERED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] org.eclipse.riena.internal.core.StartupsSafeRunnable Startup: 'org.eclipse.equinox.log' succesful.
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01 13:29:42 IST 2009 (1254383982453 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No stage information set.)
Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration DeferredLogEvent on Thu Oct 01 13:29:42 IST 2009 (1254383982500 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No configuration given!.)
Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found protocol [hessian] org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @4ac216
Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null {org.user.mgmt.common.services.IUserManagement}={service.url =http://localhost/hessian/IUserManagementService, service.protocol=hessian, service.id=49} ServiceEvent REGISTERED
Thu Oct 01 13:29:42 IST 2009 DEBUG [Start Level Event Dispatcher] org.eclipse.riena.internal.communication.core.registry.Remot eServiceRegistry OSGi NEW service registered id: org.user.mgmt.common.services.IUserManagement
[Lorg.user.mgmt.common.beans.UserBean;@1758500
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=50} ServiceEvent REGISTERED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent INFO
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null {org.osgi.service.http.HttpService}={service.description=Equ inox Jetty-based Http Service, service.vendor=Eclipse.org, http.port=2401, service.id=51} ServiceEvent REGISTERED
Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null {org.osgi.service.cm.ManagedServiceFactory}={service.pid=org .eclipse.equinox.http.jetty.config, service.id=52} ServiceEvent REGISTERED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTLEVEL CHANGED
!SESSION 2009-10-01 13:29:39.937 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.6.0_16
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments: -dev file:F:/latest downloads/eclipse/workspace/.metadata/.plugins/org.eclipse.p de.core/org.user.mgmt.rap/dev.properties -os win32 -ws win32 -arch x86 -console -consolelog

!ENTRY org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
!MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
!MESSAGE Bundle org.eclipse.core.runtime_3.5.100.v20090629 [168] was not resolved.
!SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
!MESSAGE Missing optionally required bundle org.eclipse.core.runtime.compatibility.auth_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
!MESSAGE Missing imported package org.eclipse.core.internal.runtime.auth_0.0.0.

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
!MESSAGE Source Provider 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend AbstractSourceProvider
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
!MESSAGE Source Provider 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend AbstractSourceProvider
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
!MESSAGE Source Provider 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend AbstractSourceProvider

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
!MESSAGE Source Provider 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend AbstractSourceProvider

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
!MESSAGE Source Provider 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should extend AbstractSourceProvider
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
!MESSAGE Conflict for 'org.eclipse.ui.newWizard':
HandlerActivation(commandId=org.eclipse.ui.newWizard,
handler=org.eclipse.ui.internal.handlers.WizardHandler$New,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.newWizard,
handler=org.eclipse.ui.internal.handlers.WizardHandler$New@177ab84,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.import':
HandlerActivation(commandId=org.eclipse.ui.file.import,
handler=org.eclipse.ui.internal.handlers.WizardHandler$Impor t,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.import,
handler=org.eclipse.ui.internal.handlers.WizardHandler$Import@44b7f7,
expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench


!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.export':
HandlerActivation(commandId=org.eclipse.ui.file.export,
handler=org.eclipse.ui.internal.handlers.WizardHandler$Export@ebaf12,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.export,
handler=org.eclipse.ui.internal.handlers.WizardHandler$Expor t,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.properties':
HandlerActivation(commandId=org.eclipse.ui.file.properties,
handler=org.eclipse.ui.internal.handlers.PropertyDialogHandl er,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.properties,
handler=org.eclipse.ui.internal.handlers.PropertyDialogHandler@14b03ea,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.exit':
HandlerActivation(commandId=org.eclipse.ui.file.exit,
handler=org.eclipse.ui.internal.handlers.QuitHandler@77a748,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.exit,
handler=org.eclipse.ui.internal.handlers.QuitHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE Conflict for 'org.eclipse.ui.window.switchToEditor':
HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
handler=org.eclipse.ui.internal.WorkbenchEditorsHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
handler=org.eclipse.ui.internal.WorkbenchEditorsHandler@f84b0a,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
2009-10-01 13:29:51.234
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE Conflict for 'org.eclipse.ui.window.minimizePart':
HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
handler=org.eclipse.ui.internal.handlers.MinimizePartHandler ,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
handler=org.eclipse.ui.internal.handlers.MinimizePartHandler@15ee9e3,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE Conflict for 'org.eclipse.ui.file.closePart':
HandlerActivation(commandId=org.eclipse.ui.file.closePart,
handler=org.eclipse.ui.internal.handlers.ClosePartHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.closePart,
handler=org.eclipse.ui.internal.handlers.ClosePartHandler@1f94a1f,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.window.preferences':
HandlerActivation(commandId=org.eclipse.ui.window.preference s,
handler=org.eclipse.ui.internal.handlers.ShowPreferencePageH andler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.preference s,
handler=org.eclipse.ui.internal.handlers.ShowPreferencePageHandler@1d318f,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.views.showView':
HandlerActivation(commandId=org.eclipse.ui.views.showView,
handler=org.eclipse.ui.handlers.ShowViewHandler@1b0c08,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.views.showView,
handler=org.eclipse.ui.handlers.ShowViewHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.perspectives.showPerspective':
HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
handler=org.eclipse.ui.handlers.ShowPerspectiveHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
handler=org.eclipse.ui.handlers.ShowPerspectiveHandler@a9509d,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.navigate.showIn':
HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
handler=org.eclipse.ui.internal.ShowInHandler@16528a2,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
handler=org.eclipse.ui.internal.ShowInHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE Conflict for 'org.eclipse.ui.window.activateEditor':
HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
handler=org.eclipse.ui.internal.ActivateEditorHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
handler=org.eclipse.ui.internal.ActivateEditorHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE Conflict for 'org.eclipse.ui.window.showSystemMenu':
HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
!MESSAGE Conflict for 'org.eclipse.ui.window.showViewMenu':
HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
handler=org.eclipse.ui.internal.ShowViewMenuHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
handler=org.eclipse.ui.internal.ShowViewMenuHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
!MESSAGE Conflict for 'org.eclipse.ui.file.close':
HandlerActivation(commandId=org.eclipse.ui.file.close,
handler=org.eclipse.ui.internal.CloseEditorHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.close,
handler=org.eclipse.ui.internal.CloseEditorHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE Conflict for 'org.eclipse.ui.file.closeAll':
HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
handler=org.eclipse.ui.internal.CloseAllHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
handler=org.eclipse.ui.internal.CloseAllHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE Conflict for 'org.eclipse.ui.file.closeOthers':
HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
handler=org.eclipse.ui.internal.CloseOthersHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
handler=org.eclipse.ui.internal.CloseOthersHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
2009-10-01 13:29:51.312
!MESSAGE Conflict for 'org.eclipse.ui.ToggleCoolbarAction':
HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.nextEditor':
HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
handler=org.eclipse.ui.internal.CycleEditorHandler:true,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
handler=org.eclipse.ui.internal.CycleEditorHandler:true,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.previousEditor':
HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
handler=org.eclipse.ui.internal.CycleEditorHandler:false,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
handler=org.eclipse.ui.internal.CycleEditorHandler:false,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.nextView':
HandlerActivation(commandId=org.eclipse.ui.window.nextView,
handler=org.eclipse.ui.internal.CycleViewHandler:true,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.nextView,
handler=org.eclipse.ui.internal.CycleViewHandler:true,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.previousView':
HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
handler=org.eclipse.ui.internal.CycleViewHandler:false,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
handler=org.eclipse.ui.internal.CycleViewHandler:false,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.nextPerspective':
HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.previousPerspective':
HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench


!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.closeAllPerspectives':
HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.customizePerspective':
HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.closePerspective':
HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.openEditorDropDown':
HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.newEditor':
HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.maximizePart':
HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.390
!MESSAGE Could not create color factory.
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Could not create color factory., Code: 4, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
!MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".
!STACK 0
java.lang.ExceptionInInitializerError
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException
at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
at org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
... 48 more
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory"., Code: 1, Plugin: org.eclipse.equinox.registry
java.lang.ExceptionInInitializerError
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
!MESSAGE Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or defaultMapping may be set.

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
!MESSAGE Could not create color factory.

!ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
!MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".

at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException
at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
at org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
... 48 more
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or defaultMapping may be set., Code: 4, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Could not create color factory., Code: 4, Plugin: org.eclipse.rap.ui
!STACK 0
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory"., Code: 1, Plugin: org.eclipse.equinox.registry
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_BG_END: Only one of value or defaultMapping may be set., Code: 4, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Could not create color factory., Code: 4, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.421
!MESSAGE Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_BG_END: Only one of value or defaultMapping may be set.

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.421
!MESSAGE Could not create color factory.

!ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.421
!MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".
!STACK 0
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory"., Code: 1, Plugin: org.eclipse.equinox.registry
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at

[Updated on: Thu, 01 October 2009 08:09]

Report message to a moderator

Re: RAP with Riena Remote Service Support [message #489019 is a reply to message #489000] Thu, 01 October 2009 08:55 Go to previous messageGo to next message
Benjamin Muskalla is currently offline Benjamin MuskallaFriend
Messages: 338
Registered: July 2009
Senior Member
Hi,

it looks like you have both org.eclipse.rap.ui.workbench and
org.eclipse.ui.workbench in your launc configuration. Please be sure to
either have the RCP plugins *or* the RAP plugins in your target / launch
config to prevent these errors. Due to the architecture of Equinox it's
not possible to have them run in the same configuration together.

Regards,
Ben

Hemanth M S wrote:
> Hi Stefan,
>
> Ok I got it. It is because of server is not started. I forgot to select
> server bundle. After selection
> org.eclipse.equinox.http.jetty
> org.mortbay.jetty.server
> org.mortbay.jetty.util
>
>
> Now I got the page with following log.
>
> osgi> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher]
> null {org.osgi.service.log.LogService,
> org.eclipse.equinox.log.ExtendedLogService}={service.id=48} ServiceEvent
> REGISTERED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher]
> org.eclipse.riena.internal.core.StartupsSafeRunnable Startup:
> 'org.eclipse.equinox.log' succesful.
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01
> 13:29:42 IST 2009 (1254383982453 ms) in thread [Start Level Event
> Dispatcher]:
> LogLevel(INFO), Message(No stage information set.)
> Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration
> DeferredLogEvent on Thu Oct 01 13:29:42 IST 2009 (1254383982500 ms) in
> thread [Start Level Event Dispatcher]:
> LogLevel(INFO), Message(No configuration given!.)
> Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher]
> org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found
> protocol [hessian]
> mailto: org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @4ac216
>
> Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.user.mgmt.common.services.IUserManagement}={service.url
> =http://localhost/hessian/IUserManagementService,
> service.protocol=hessian, service.id=49} ServiceEvent REGISTERED
> Thu Oct 01 13:29:42 IST 2009 DEBUG [Start Level Event Dispatcher]
> org.eclipse.riena.internal.communication.core.registry.Remot
> eServiceRegistry OSGi NEW service registered id:
> org.user.mgmt.common.services.IUserManagement
> [Lorg.user.mgmt.common.beans.UserBean;@1758500
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=50}
> ServiceEvent REGISTERED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent INFO
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.osgi.service.http.HttpService}={service.description=Equ inox
> Jetty-based Http Service, service.vendor=Eclipse.org, http.port=2401,
> service.id=51} ServiceEvent REGISTERED
> Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.osgi.service.cm.ManagedServiceFactory}={service.pid=org
> .eclipse.equinox.http.jetty.config, service.id=52} ServiceEvent REGISTERED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTLEVEL CHANGED
> !SESSION 2009-10-01 13:29:39.937
> -----------------------------------------------
> eclipse.buildId=unknown
> java.version=1.6.0_16
> java.vendor=Sun Microsystems Inc.
> BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
> Command-line arguments: -dev file:F:/latest
> downloads/eclipse/workspace/.metadata/.plugins/org.eclipse.p
> de.core/org.user.mgmt.rap/dev.properties -os win32 -ws win32 -arch x86
> -console -consolelog
>
> !ENTRY org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
> !MESSAGE The following is a complete list of bundles which are not
> resolved, see the prior log entry for the root cause if it exists:
> !SUBENTRY 1 org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
> !MESSAGE Bundle org.eclipse.core.runtime_3.5.100.v20090629 [168] was not
> resolved.
> !SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
> !MESSAGE Missing optionally required bundle
> org.eclipse.core.runtime.compatibility.auth_[3.2.0,4.0.0).
> !SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
> !MESSAGE Missing imported package
> org.eclipse.core.internal.runtime.auth_0.0.0.
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend
> AbstractSourceProvider
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend
> AbstractSourceProvider
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend
> AbstractSourceProvider
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend
> AbstractSourceProvider
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should
> extend AbstractSourceProvider
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should
> extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
> !MESSAGE Conflict for 'org.eclipse.ui.newWizard':
> HandlerActivation(commandId=org.eclipse.ui.newWizard,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$New,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.newWizard,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:New@177ab84,
>
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.import':
> HandlerActivation(commandId=org.eclipse.ui.file.import,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$Impor t,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.import,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:Import@44b7f7,
>
> expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING
> [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A
> handler conflict occurred. This may disable some commands., Code: 0,
> Plugin: org.eclipse.ui.workbench
>
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.export':
> HandlerActivation(commandId=org.eclipse.ui.file.export,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:Export@ebaf12,
>
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.export,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$Expor t,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.properties':
> HandlerActivation(commandId=org.eclipse.ui.file.properties,
> handler=org.eclipse.ui.internal.handlers.PropertyDialogHandl er,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.properties,
> handler=mailto:org.eclipse.ui.internal.handlers.PropertyDialogHandler@14b03ea,
>
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.exit':
> HandlerActivation(commandId=org.eclipse.ui.file.exit,
> handler=mailto:org.eclipse.ui.internal.handlers.QuitHandler@77a748,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.exit,
> handler=org.eclipse.ui.internal.handlers.QuitHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE Conflict for 'org.eclipse.ui.window.switchToEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
> handler=org.eclipse.ui.internal.WorkbenchEditorsHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
> handler=mailto:org.eclipse.ui.internal.WorkbenchEditorsHandler@f84b0a,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 Thu Oct 01 13:29:51 IST 2009 WARNING
> [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A
> handler conflict occurred. This may disable some commands., Code: 0,
> Plugin: org.eclipse.ui.workbench
> 2009-10-01 13:29:51.234
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE Conflict for 'org.eclipse.ui.window.minimizePart':
> HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
> handler=org.eclipse.ui.internal.handlers.MinimizePartHandler ,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
> handler=mailto:org.eclipse.ui.internal.handlers.MinimizePartHandler@15ee9e3,
>
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE Conflict for 'org.eclipse.ui.file.closePart':
> HandlerActivation(commandId=org.eclipse.ui.file.closePart,
> handler=org.eclipse.ui.internal.handlers.ClosePartHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.closePart,
> handler=mailto:org.eclipse.ui.internal.handlers.ClosePartHandler@1f94a1f,
>
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.window.preferences':
> HandlerActivation(commandId=org.eclipse.ui.window.preference s,
> handler=org.eclipse.ui.internal.handlers.ShowPreferencePageH andler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.preference s,
> handler=mailto:org.eclipse.ui.internal.handlers.ShowPreferencePageHandler@1d318f,
>
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.views.showView':
> HandlerActivation(commandId=org.eclipse.ui.views.showView,
> handler=mailto:org.eclipse.ui.handlers.ShowViewHandler@1b0c08,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.views.showView,
> handler=org.eclipse.ui.handlers.ShowViewHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.perspectives.showPerspective':
> HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
> handler=org.eclipse.ui.handlers.ShowPerspectiveHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
> handler=mailto:org.eclipse.ui.handlers.ShowPerspectiveHandler@a9509d,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.navigate.showIn':
> HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
> handler=mailto:org.eclipse.ui.internal.ShowInHandler@16528a2,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
> handler=org.eclipse.ui.internal.ShowInHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE Conflict for 'org.eclipse.ui.window.activateEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
> handler=org.eclipse.ui.internal.ActivateEditorHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
> handler=org.eclipse.ui.internal.ActivateEditorHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE Conflict for 'org.eclipse.ui.window.showSystemMenu':
> HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
> handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
> handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
> !MESSAGE Conflict for 'org.eclipse.ui.window.showViewMenu':
> HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
> handler=org.eclipse.ui.internal.ShowViewMenuHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
> handler=org.eclipse.ui.internal.ShowViewMenuHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
> !MESSAGE Conflict for 'org.eclipse.ui.file.close':
> HandlerActivation(commandId=org.eclipse.ui.file.close,
> handler=org.eclipse.ui.internal.CloseEditorHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.close,
> handler=org.eclipse.ui.internal.CloseEditorHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE Conflict for 'org.eclipse.ui.file.closeAll':
> HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
> handler=org.eclipse.ui.internal.CloseAllHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
> handler=org.eclipse.ui.internal.CloseAllHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE Conflict for 'org.eclipse.ui.file.closeOthers':
> HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
> handler=org.eclipse.ui.internal.CloseOthersHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
> handler=org.eclipse.ui.internal.CloseOthersHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0Thu Oct 01 13:29:51 IST 2009
> WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime
> Message: A handler conflict occurred. This may disable some commands.,
> Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> 2009-10-01 13:29:51.312
> !MESSAGE Conflict for 'org.eclipse.ui.ToggleCoolbarAction':
> HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
> handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
> handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.nextEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
> handler=org.eclipse.ui.internal.CycleEditorHandler:true,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
> handler=org.eclipse.ui.internal.CycleEditorHandler:true,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.previousEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
> handler=org.eclipse.ui.internal.CycleEditorHandler:false,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
> handler=org.eclipse.ui.internal.CycleEditorHandler:false,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.nextView':
> HandlerActivation(commandId=org.eclipse.ui.window.nextView,
> handler=org.eclipse.ui.internal.CycleViewHandler:true,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.nextView,
> handler=org.eclipse.ui.internal.CycleViewHandler:true,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.previousView':
> HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
> handler=org.eclipse.ui.internal.CycleViewHandler:false,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
> handler=org.eclipse.ui.internal.CycleViewHandler:false,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.nextPerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.previousPerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
> expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING
> [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A
> handler conflict occurred. This may disable some commands., Code: 0,
> Plugin: org.eclipse.ui.workbench
>
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.closeAllPerspectives':
> HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
> handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
> handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.customizePerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
> handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
> handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.closePerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
> handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
> handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.openEditorDropDown':
> HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
> handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
> handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.newEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
> handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
> handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.maximizePart':
> HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
> handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
> handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.390
> !MESSAGE Could not create color factory.
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Could not create color factory., Code:
> 4, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
> !MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class
> "org.eclipse.ui.internal.themes.LightColorFactory".
> !STACK 0
> java.lang.ExceptionInInitializerError
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
> at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
> at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
> at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real
> mAdapterHook.java:48)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work
> bench.java:430)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j
> ava:157)
> at org.user.mgmt.rap.Application.createUI(Application.java:17)
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:92)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
> Caused by: java.lang.NullPointerException
> at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
> at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
> at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
> at
> org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
>
> ... 48 more
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to
> instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".,
> Code: 1, Plugin: org.eclipse.equinox.registry
> java.lang.ExceptionInInitializerError
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
> at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
> at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
> at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real
> mAdapterHook.java:48)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work
> bench.java:430)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j
> ava:157)
> at org.user.mgmt.rap.Application.createUI(Application.java:17)
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:92)
> !ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
> !MESSAGE Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id
> org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or
> defaultMapping may be set.
>
> !ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
> !MESSAGE Could not create color factory.
>
> !ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
> !MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class
> "org.eclipse.ui.internal.themes.LightColorFactory".
>
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
> Caused by: java.lang.NullPointerException
> at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
> at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
> at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
> at
> org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
>
> ... 48 more
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Plugin org.eclipse.ui, extension
> org.eclipse.ui.themes, id
> org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or
> defaultMapping may be set., Code: 4, Plugin: org.eclipse.rap.ui
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Could not create color factory., Code:
> 4, Plugin: org.eclipse.rap.ui
> !STACK 0
> java.lang.NoClassDefFoundError: Could not initialize class
> org.eclipse.ui.internal.themes.LightColorFactory
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
> at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
> at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
> at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real
> mAdapterHook.java:48)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work
> bench.java:430)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j
> ava:157)
> at org.user.mgmt.rap.Application.createUI(Application.java:17)
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:92)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to
> instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".,
> Code: 1, Plugin: org.eclipse.equinox.registry
> java.lang.NoClassDefFoundError: Could not initialize class
> org.eclipse.ui.internal.themes.LightColorFactory
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Wo
Re: RAP with Riena Remote Service Support [message #489037 is a reply to message #489000] Thu, 01 October 2009 09:40 Go to previous messageGo to next message
Stefan Liebig is currently offline Stefan LiebigFriend
Messages: 124
Registered: July 2009
Senior Member
Hi Hemanth,

Hemanth M S wrote:
> Hi Stefan,
>
> Ok I got it. It is because of server is not started. I forgot to select
> server bundle. After selection
> org.eclipse.equinox.http.jetty
> org.mortbay.jetty.server
> org.mortbay.jetty.util
>

Argh, I didn´t see that! It is so easy to forget it ;-)

Tschüß,
Stefan
Re: RAP with Riena Remote Service Support [message #489057 is a reply to message #489037] Thu, 01 October 2009 11:51 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Ben & Stefan,

First of all hearty thanks for your great support Smile

Now I have created two work space and two Target Platform one for RCP and one for RAP.

And I have invoked Web Service successfully from RAP. But I got another exception while showing page.

2009-10-01 17:09:41.484::WARN: ERROR: /rap
java.lang.IllegalArgumentException: An entry point named 'userMgmt' does not exist.
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:77)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)



My plugin.xml looks like this

<extension
point="org.eclipse.rap.ui.entrypoint">
<entrypoint
class="org.user.mgmt.rap.Application"
parameter="userMgmt"
id="org.user.mgmt.rap.Application">
</entrypoint>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="RAP Perspective"
class="org.user.mgmt.rap.Perspective"
id="org.user.mgmt.rap.perspective">
</perspective>
</extension>

I am not able to find out, why its coming? Sad

Regards
Hemanth M S

[Updated on: Thu, 01 October 2009 12:17]

Report message to a moderator

Re: RAP with Riena Remote Service Support [message #489083 is a reply to message #489057] Thu, 01 October 2009 13:19 Go to previous messageGo to next message
Benjamin Muskalla is currently offline Benjamin MuskallaFriend
Messages: 338
Registered: July 2009
Senior Member
Hi Hemanth,

are you sure you have your application bundle in the launch config?
You said you get the exception *and* the RAP app is running? Because the
exceptions only says that there is no entrypoint - so naturally this
means you can't even access the application.

Regards,
Ben

Hemanth M S wrote:
> Hi Ben & Stefan,
>
> First of all hearty thanks for your great support :)
>
> Now I have created two work space and Target Platform one for RCP and
> one for RAP.
>
> And I have invoked Web Service successfully from RAP. But I got another
> exception while showing page.
>
> 2009-10-01 17:09:41.484::WARN: ERROR: /rap
> java.lang.IllegalArgumentException: An entry point named 'userMgmt' does
> not exist.
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:77)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
>
>
>
> My plugin.xml looks like this
>
> <extension
> point="org.eclipse.rap.ui.entrypoint">
> <entrypoint
> class="org.user.mgmt.rap.Application"
> parameter="userMgmt"
> id="org.user.mgmt.rap.Application">
> </entrypoint>
> </extension>
> <extension
> point="org.eclipse.ui.perspectives">
> <perspective
> name="RAP Perspective"
> class="org.user.mgmt.rap.Perspective"
> id="org.user.mgmt.rap.perspective">
> </perspective>
> </extension>
>
> I am not able to find out, why its coming? :(
>
> Regards
> Hemanth M S


--
Benjamin Muskalla | EclipseSource Karlsruhe
http://www.eclipsesource.com | http://twitter.com/eclipsesource
Re: RAP with Riena Remote Service Support [message #489106 is a reply to message #489083] Thu, 01 October 2009 14:14 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Ben,

RAP Activator worked fine and even started to load page, then got exception


This is the launch config

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.rap.ui.launch.RAPLauncher">
<booleanAttribute key="append.args" value="true"/>
<booleanAttribute key="automaticAdd" value="true"/>
<booleanAttribute key="automaticValidate" value="false"/>
<stringAttribute key="bootstrap" value=""/>
<stringAttribute key="checked" value="[NONE]"/>
<booleanAttribute key="clearConfig" value="false"/>
<stringAttribute key="configLocation" value=" ${workspace_loc}/.metadata/.plugins/org.eclipse.pde.core/org .user.mgmt.rap "/>
<booleanAttribute key="default_auto_start" value="true"/>
<intAttribute key="default_start_level" value="4"/>
<booleanAttribute key="includeOptional" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl} -console"/>
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Declipse.ignoreApp=true -Dosgi.noShutdown=true"/>
<stringAttribute key="org.eclipse.rap.launch.browserMode" value="INTERNAL"/>
<stringAttribute key="org.eclipse.rap.launch.entryPoint" value="userMgmt"/>
<stringAttribute key="org.eclipse.rap.launch.libraryVariant" value="STANDARD"/>
<stringAttribute key="org.eclipse.rap.launch.logLevel" value="OFF"/>
<booleanAttribute key="org.eclipse.rap.launch.openBrowser" value="true"/>
<intAttribute key="org.eclipse.rap.launch.port" value="10080"/>
<stringAttribute key="org.eclipse.rap.launch.servletName" value="rap"/>
<booleanAttribute key="org.eclipse.rap.launch.terminatePrevious" value="true"/>
<booleanAttribute key="org.eclipse.rap.launch.useManualPort" value="false"/>
<stringAttribute key="pde.version" value="3.3"/>
<booleanAttribute key="show_selected_only" value="false"/>
<stringAttribute key="target_bundles" value="org.eclipse.swt@default:default,org.eclipse.core.commands*
3.5.0.I20090525-2000@default:default,org.eclipse.osgi*3.5.0.v20090520@-
1
:true,org.eclipse.core.databinding.observable*
1.2.0.I20090604-2000@default:default,org.eclipse.equinox.registry*
3.4.100.v20090520-1800@default:default,
org.eclipse.jface.databinding@default:default,org.eclipse.equinox.http.servlet*
1.0.200.v20090520-1800@default:default,org.eclipse.osgi*3.5.100.v20090803@-
1
:true,org.eclipse.core.runtime*3.5.0.v20090525@default:true,
org.eclipse.equinox.transforms.hook@default:false,org.eclipse.swt.win32.win32.x86@default:false,
org.eclipse.help@default:default,org.eclipse.equinox.preferences*
3.2.300.v20090520-1800@default:default,org.eclipse.core.jobs*
3.4.100.v20090429-1800@default:default,
org.eclipse.rap.ui@default:default,org.eclipse.core.databinding.observable*
1.2.0.I20090630-0800@default:default,
org.eclipse.equinox.log@default:default,org.eclipse.core.jobs*3.4.100.v20090429-1800@default:default,
org.eclipse.rap.rwt@default:default,org.apache.log4j@default:default,com.ibm.icu.base@default:default,org.eclipse.jface@default:default,org.eclipse.core.expressions*
3.4.100.v20090429-1800@default:default,org.eclipse.equinox.http.registry*
1.0.200.v20090520-1800@default:default,org.eclipse.core.databinding*
1.2.0.I20090630-0800@default:default,org.eclipse.core.commands*
3.5.0.I20090525-2000@default:default,
org.eclipse.rap.jface.databinding@default:default,org.eclipse.core.expressions*
3.4.100.v20090429-1800@default:default,org.eclipse.rap.jface@default:default,
com.ibm.icu@default:default,org.eclipse.core.contenttype*3.4.0.v20090429-1800@default:default,
org.user.mgmt.common@default:default,org.eclipse.equinox.http.jetty*
2.0.0.v20090520-1800@default:default,org.eclipse.osgi.services*
3.2.0.v20090520-1800@default:default,org.eclipse.equinox.http.jetty*
2.0.0.v20090520-1800@default:default,
org.eclipse.riena.communication.factory.hessian@default:default,org.eclipse.core.databinding*
1.2.0.I20090604-2000@default:default,org.mortbay.jetty.util*6.1.15.v200905182336@default:default
,org.user.mgmt.ws@default:default,org.eclipse.equinox.app*
1.2.0.v20090520-1800@default:default,org.eclipse.core.databinding.property*
1.2.0.I20090630-0800@default:default,org.eclipse.equinox.http.registry*
1.0.200.v20090520-1800@default:default,org.eclipse.rap.ui.workbench@default:default,
com.caucho.hessian@default:default,org.eclipse.equinox.common*3.5.100.v20090727@2:true,
org.eclipse.rap.rwt.q07@default:false,org.eclipse.core.contenttype*
3.4.0.v20090429-1800@default:default,javax.servlet*
2.5.0.v200806031605@default:default,org.eclipse.equinox.registry*
3.4.100.v20090520-1800@default:default,org.mortbay.jetty.server*
6.1.15.v200905151201@default:default,javax.servlet*2.5.0.v200806031605@default:default,
org.eclipse.equinox.security@default:default,
org.eclipse.core.runtime.compatibility.auth@default:default,org.eclipse.equinox.common*
3.5.0.v20090520-1800@2:true,org.mortbay.jetty.server*6.1.15.v200905151201@default:default,
org.eclipse.riena.core@default:default,org.eclipse.core.databinding.property*
1.2.0.I20090526-2000@default:default,org.eclipse.core.net@default:default,
javax.servlet.jsp@default:default,org.eclipse.equinox.app*
1.2.0.v20090520-1800@default:default,org.eclipse.osgi.services*
3.2.0.v20090520-1800@default:default,
org.eclipse.equinox.security.win32.x86@default:false,org.eclipse.equinox.preferences*
3.2.300.v20090520-1800@default:default,org.eclipse.equinox.http.servlet*
1.0.200.v20090520-1800@default:default,org.mortbay.jetty.util*
6.1.15.v200905182336@default:default,org.eclipse.core.variables@default:default,
org.eclipse.riena.communication.core@default:default"/>
<booleanAttribute key="tracing" value="false"/>
<booleanAttribute key="useDefaultConfigArea" value="true"/>
<stringAttribute key="workspace_bundles" value="org.user.mgmt.rap@default:default"/>
</launchConfiguration>

What should I do other than this? Sad

Regards
Hemanth M S

[Updated on: Thu, 01 October 2009 15:21]

Report message to a moderator

Re: RAP with Riena Remote Service Support [message #489166 is a reply to message #489106] Thu, 01 October 2009 16:38 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Ben & Stefan,

Now its working, Selected bundles freshly. Thank you for your kind support....


Regards
Hemanth M S
Re: RAP with Riena Remote Service Support [message #583689 is a reply to message #488852] Thu, 01 October 2009 04:14 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Stefan,

Yes Riena client is running. :(


org.osgi.framework.BundleException: Exception in org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:805)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:754)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:353)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu me(AbstractBundle.java:370)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBun dle(Framework.java:1068)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.r esumeBundles(StartLevelManager.java:557)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.i ncFWSL(StartLevelManager.java:464)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d oSetStartLevel(StartLevelManager.java:248)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d ispatchEvent(StartLevelManager.java:445)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve nt(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread .run(EventManager.java:330)
Caused by: java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to create proxy for protocol=hessian url=http://localhost/hessian/IUserManagementService interface=org.user.mgmt.common.services.IUserManagement
at org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
at $Proxy11.getAllUserBeans(Unknown Source)
at org.user.mgmt.rap.Activator.start(Activator.java:46)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1 .run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:773)
... 10 more
Root exception:
java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to create proxy for protocol=hessian url=http://localhost/hessian/IUserManagementService interface=org.user.mgmt.common.services.IUserManagement
at org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
at $Proxy11.getAllUserBeans(Unknown Source)
at org.user.mgmt.rap.Activator.start(Activator.java:46)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1 .run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:773)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:754)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:353)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu me(AbstractBundle.java:370)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBun dle(Framework.java:1068)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.r esumeBundles(StartLevelManager.java:557)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.i ncFWSL(StartLevelManager.java:464)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d oSetStartLevel(StartLevelManager.java:248)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d ispatchEvent(StartLevelManager.java:445)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve nt(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread .run(EventManager.java:330)
Thu Oct 01 09:34:55 IST 2009 ERROR [Framework Event Dispatcher] null FrameworkEvent ERROR
org.osgi.framework.BundleException: Exception in org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:805)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:754)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:353)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu me(AbstractBundle.java:370)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBun dle(Framework.java:1068)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.r esumeBundles(StartLevelManager.java:557)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.i ncFWSL(StartLevelManager.java:464)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d oSetStartLevel(StartLevelManager.java:248)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.d ispatchEvent(StartLevelManager.java:445)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve nt(EventManager.java:220)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread .run(EventManager.java:330)
Caused by: java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to create proxy for protocol=hessian url=http://localhost/hessian/IUserManagementService interface=org.user.mgmt.common.services.IUserManagementThu Oct 01 09:34:55 IST 2009 INFO [Start Level Event Dispatcher] null {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47} ServiceEvent REGISTERED

at org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
at $Proxy11.getAllUserBeans(Unknown Source)
at org.user.mgmt.rap.Activator.start(Activator.java:46)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1 .run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:773)
... 10 more




Regards

Hemanth M S
Re: RAP with Riena Remote Service Support [message #583709 is a reply to message #583689] Thu, 01 October 2009 05:47 Go to previous messageGo to next message
Stefan Liebig is currently offline Stefan LiebigFriend
Messages: 124
Registered: July 2009
Senior Member
Hi Hemanth,

One reason for this problem could be that the bundle
org.eclipse.riena.communication.factory.hessian is missing. Can you
check that?

Tschüß,
Stefan

Hemanth M S wrote:
> Hi Stefan,
>
> Yes Riena client is running. :(
>
> org.osgi.framework.BundleException: Exception in
> org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:805)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tart(BundleContextImpl.java:754)
> at org.eclipse.osgi.framework.internal.core.BundleHost.startWor
> ker(BundleHost.java:353)
> at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu
> me(AbstractBundle.java:370)
> at org.eclipse.osgi.framework.internal.core.Framework.resumeBun
> dle(Framework.java:1068)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.r
> esumeBundles(StartLevelManager.java:557)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.i
> ncFWSL(StartLevelManager.java:464)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> oSetStartLevel(StartLevelManager.java:248)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> ispatchEvent(StartLevelManager.java:445)
> at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve
> nt(EventManager.java:220)
> at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread
> .run(EventManager.java:330)
> Caused by: java.lang.RuntimeException: LazyProxy: missing
> IRemoteServiceFactory to create proxy for protocol=hessian
> url=http://localhost/hessian/IUserManagementService
> interface=org.user.mgmt.common.services.IUserManagement
> at org.eclipse.riena.communication.core.factory.RemoteServiceFa
> ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
> at $Proxy11.getAllUserBeans(Unknown Source)
> at org.user.mgmt.rap.Activator.start(Activator.java:46)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1
> .run(BundleContextImpl.java:782)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:773)
> ... 10 more
> Root exception:
> java.lang.RuntimeException: LazyProxy: missing IRemoteServiceFactory to
> create proxy for protocol=hessian
> url=http://localhost/hessian/IUserManagementService
> interface=org.user.mgmt.common.services.IUserManagement
> at org.eclipse.riena.communication.core.factory.RemoteServiceFa
> ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
> at $Proxy11.getAllUserBeans(Unknown Source)
> at org.user.mgmt.rap.Activator.start(Activator.java:46)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1
> .run(BundleContextImpl.java:782)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:773)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tart(BundleContextImpl.java:754)
> at org.eclipse.osgi.framework.internal.core.BundleHost.startWor
> ker(BundleHost.java:353)
> at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu
> me(AbstractBundle.java:370)
> at org.eclipse.osgi.framework.internal.core.Framework.resumeBun
> dle(Framework.java:1068)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.r
> esumeBundles(StartLevelManager.java:557)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.i
> ncFWSL(StartLevelManager.java:464)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> oSetStartLevel(StartLevelManager.java:248)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> ispatchEvent(StartLevelManager.java:445)
> at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve
> nt(EventManager.java:220)
> at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread
> .run(EventManager.java:330)
> Thu Oct 01 09:34:55 IST 2009 ERROR [Framework Event Dispatcher] null
> FrameworkEvent ERROR
> org.osgi.framework.BundleException: Exception in
> org.user.mgmt.rap.Activator.start() of bundle org.user.mgmt.rap.
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:805)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tart(BundleContextImpl.java:754)
> at org.eclipse.osgi.framework.internal.core.BundleHost.startWor
> ker(BundleHost.java:353)
> at org.eclipse.osgi.framework.internal.core.AbstractBundle.resu
> me(AbstractBundle.java:370)
> at org.eclipse.osgi.framework.internal.core.Framework.resumeBun
> dle(Framework.java:1068)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.r
> esumeBundles(StartLevelManager.java:557)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.i
> ncFWSL(StartLevelManager.java:464)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> oSetStartLevel(StartLevelManager.java:248)
> at org.eclipse.osgi.framework.internal.core.StartLevelManager.d
> ispatchEvent(StartLevelManager.java:445)
> at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEve
> nt(EventManager.java:220)
> at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread
> .run(EventManager.java:330)
> Caused by: java.lang.RuntimeException: LazyProxy: missing
> IRemoteServiceFactory to create proxy for protocol=hessian
> url=http://localhost/hessian/IUserManagementService
> interface=org.user.mgmt.common.services.IUserManagementThu Oct 01
> 09:34:55 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47}
> ServiceEvent REGISTERED
>
> at org.eclipse.riena.communication.core.factory.RemoteServiceFa
> ctory$LazyProxyHandler.invoke(RemoteServiceFactory.java:296)
> at $Proxy11.getAllUserBeans(Unknown Source)
> at org.user.mgmt.rap.Activator.start(Activator.java:46)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1
> .run(BundleContextImpl.java:782)
> at java.security.AccessController.doPrivileged(Native Method)
> at org.eclipse.osgi.framework.internal.core.BundleContextImpl.s
> tartActivator(BundleContextImpl.java:773)
> ... 10 more
>
>
>
>
> Regards
>
> Hemanth M S
Re: RAP with Riena Remote Service Support [message #583729 is a reply to message #488982] Thu, 01 October 2009 06:12 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Stefan,

:) Yes you are right. Now that error has gone. But now comes The "page cannot be displayed...". And log is as follows

osgi> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null {org.osgi.service.log.LogReaderService, org.eclipse.equinox.log.ExtendedLogReaderService}={service.i d=43} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null {org.osgi.service.log.LogService, org.eclipse.equinox.log.ExtendedLogService}={service.id=45} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] org.eclipse.riena.internal.core.StartupsSafeRunnable Startup: 'org.eclipse.equinox.log' succesful.
Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01 11:32:52 IST 2009 (1254376972359 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No stage information set.)
Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration DeferredLogEvent on Thu Oct 01 11:32:52 IST 2009 (1254376972406 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No configuration given!.)
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found protocol [hessian] mailto: org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @1162a9c
Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null {org.user.mgmt.common.services.IUserManagement}={service.url =http://localhost/hessian/IUserManagementService, service.protocol=hessian, service.id=46} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 DEBUG [Start Level Event Dispatcher] org.eclipse.riena.internal.communication.core.registry.Remot eServiceRegistry OSGi NEW service registered id: org.user.mgmt.common.services.IUserManagement
[Lorg.user.mgmt.common.beans.UserBean;@1abcd9b
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47} ServiceEvent REGISTERED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTED
Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTLEVEL CHANGED


And I am very thankful for your kind response...

Regards
Hemanth M S
Re: RAP with Riena Remote Service Support [message #583740 is a reply to message #583729] Thu, 01 October 2009 07:05 Go to previous messageGo to next message
Stefan Liebig is currently offline Stefan LiebigFriend
Messages: 124
Registered: July 2009
Senior Member
Hi Hemanth,

Nice! The log looks fine so far. ;-)
But what is this "page cannot be displayed"? Is it an exception, log
message or a dialog?

Tschüß,
Stefan

Hemanth M S wrote:
> Hi Stefan,
>
> :) Yes you are right. Now that error has gone. But now comes The "page
> cannot be displayed...". And log is as follows
>
> osgi> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher]
> null {org.osgi.service.log.LogReaderService,
> org.eclipse.equinox.log.ExtendedLogReaderService}={service.i d=43}
> ServiceEvent REGISTERED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> {org.osgi.service.log.LogService,
> org.eclipse.equinox.log.ExtendedLogService}={service.id=45} ServiceEvent
> REGISTERED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher]
> org.eclipse.riena.internal.core.StartupsSafeRunnable Startup:
> 'org.eclipse.equinox.log' succesful.
> Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01
> 11:32:52 IST 2009 (1254376972359 ms) in thread [Start Level Event
> Dispatcher]:
> LogLevel(INFO), Message(No stage information set.)
> Thu Oct 01 11:32:52 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration
> DeferredLogEvent on Thu Oct 01 11:32:52 IST 2009 (1254376972406 ms) in
> thread [Start Level Event Dispatcher]:
> LogLevel(INFO), Message(No configuration given!.)
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher]
> org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found
> protocol [hessian]
> mailto: org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @1162a9c
>
> Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.user.mgmt.common.services.IUserManagement}={service.url
> =http://localhost/hessian/IUserManagementService,
> service.protocol=hessian, service.id=46} ServiceEvent REGISTERED
> Thu Oct 01 11:32:52 IST 2009 DEBUG [Start Level Event Dispatcher]
> org.eclipse.riena.internal.communication.core.registry.Remot
> eServiceRegistry OSGi NEW service registered id:
> org.user.mgmt.common.services.IUserManagement
> [Lorg.user.mgmt.common.beans.UserBean;@1abcd9b
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=47}
> ServiceEvent REGISTERED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTED
> Thu Oct 01 11:32:52 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTLEVEL CHANGED
>
>
> And I am very thankful for your kind response...
>
> Regards
> Hemanth M S
Re: RAP with Riena Remote Service Support [message #583757 is a reply to message #488993] Thu, 01 October 2009 08:05 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Stefan,

Ok I got it. It is because of server is not started. I forgot to select server bundle. After selection

org.eclipse.equinox.http.jetty
org.mortbay.jetty.server
org.mortbay.jetty.util


Now I got the page with following log.


osgi> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null {org.osgi.service.log.LogService, org.eclipse.equinox.log.ExtendedLogService}={service.id=48} ServiceEvent REGISTERED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] org.eclipse.riena.internal.core.StartupsSafeRunnable Startup: 'org.eclipse.equinox.log' succesful.
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01 13:29:42 IST 2009 (1254383982453 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No stage information set.)
Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder] org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration DeferredLogEvent on Thu Oct 01 13:29:42 IST 2009 (1254383982500 ms) in thread [Start Level Event Dispatcher]:
LogLevel(INFO), Message(No configuration given!.)
Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found protocol [hessian] mailto: org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @4ac216
Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null {org.user.mgmt.common.services.IUserManagement}={service.url =http://localhost/hessian/IUserManagementService, service.protocol=hessian, service.id=49} ServiceEvent REGISTERED
Thu Oct 01 13:29:42 IST 2009 DEBUG [Start Level Event Dispatcher] org.eclipse.riena.internal.communication.core.registry.Remot eServiceRegistry OSGi NEW service registered id: org.user.mgmt.common.services.IUserManagement
[Lorg.user.mgmt.common.beans.UserBean;@1758500
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=50} ServiceEvent REGISTERED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent INFO
Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null {org.osgi.service.http.HttpService}={service.description=Equ inox Jetty-based Http Service, service.vendor=Eclipse.org, http.port=2401, service.id=51} ServiceEvent REGISTERED
Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null {org.osgi.service.cm.ManagedServiceFactory}={service.pid=org .eclipse.equinox.http.jetty.config, service.id=52} ServiceEvent REGISTERED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null BundleEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTED
Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null FrameworkEvent STARTLEVEL CHANGED
!SESSION 2009-10-01 13:29:39.937 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.6.0_16
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments: -dev file:F:/latest downloads/eclipse/workspace/.metadata/.plugins/org.eclipse.p de.core/org.user.mgmt.rap/dev.properties -os win32 -ws win32 -arch x86 -console -consolelog

!ENTRY org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
!MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
!SUBENTRY 1 org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
!MESSAGE Bundle org.eclipse.core.runtime_3.5.100.v20090629 [168] was not resolved.
!SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
!MESSAGE Missing optionally required bundle org.eclipse.core.runtime.compatibility.auth_[3.2.0,4.0.0).
!SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
!MESSAGE Missing imported package org.eclipse.core.internal.runtime.auth_0.0.0.

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
!MESSAGE Source Provider 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend AbstractSourceProvider
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
!MESSAGE Source Provider 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend AbstractSourceProvider
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
!MESSAGE Source Provider 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend AbstractSourceProvider

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
!MESSAGE Source Provider 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend AbstractSourceProvider

!ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
!MESSAGE Source Provider 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should extend AbstractSourceProvider
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Source Provider 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
!MESSAGE Conflict for 'org.eclipse.ui.newWizard':
HandlerActivation(commandId=org.eclipse.ui.newWizard,
handler=org.eclipse.ui.internal.handlers.WizardHandler$New,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.newWizard,
handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:New@177ab84,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.import':
HandlerActivation(commandId=org.eclipse.ui.file.import,
handler=org.eclipse.ui.internal.handlers.WizardHandler$Impor t,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.import,
handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:Import@44b7f7,
expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench


!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.export':
HandlerActivation(commandId=org.eclipse.ui.file.export,
handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:Export@ebaf12,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.export,
handler=org.eclipse.ui.internal.handlers.WizardHandler$Expor t,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.properties':
HandlerActivation(commandId=org.eclipse.ui.file.properties,
handler=org.eclipse.ui.internal.handlers.PropertyDialogHandl er,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.properties,
handler=mailto:org.eclipse.ui.internal.handlers.PropertyDialogHandler@14b03ea,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
!MESSAGE Conflict for 'org.eclipse.ui.file.exit':
HandlerActivation(commandId=org.eclipse.ui.file.exit,
handler=mailto:org.eclipse.ui.internal.handlers.QuitHandler@77a748,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.exit,
handler=org.eclipse.ui.internal.handlers.QuitHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE Conflict for 'org.eclipse.ui.window.switchToEditor':
HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
handler=org.eclipse.ui.internal.WorkbenchEditorsHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
handler=mailto:org.eclipse.ui.internal.WorkbenchEditorsHandler@f84b0a,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
2009-10-01 13:29:51.234
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE Conflict for 'org.eclipse.ui.window.minimizePart':
HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
handler=org.eclipse.ui.internal.handlers.MinimizePartHandler ,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
handler=mailto:org.eclipse.ui.internal.handlers.MinimizePartHandler@15ee9e3,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
!MESSAGE Conflict for 'org.eclipse.ui.file.closePart':
HandlerActivation(commandId=org.eclipse.ui.file.closePart,
handler=org.eclipse.ui.internal.handlers.ClosePartHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.closePart,
handler=mailto:org.eclipse.ui.internal.handlers.ClosePartHandler@1f94a1f,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.window.preferences':
HandlerActivation(commandId=org.eclipse.ui.window.preference s,
handler=org.eclipse.ui.internal.handlers.ShowPreferencePageH andler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.preference s,
handler=mailto:org.eclipse.ui.internal.handlers.ShowPreferencePageHandler@1d318f,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.views.showView':
HandlerActivation(commandId=org.eclipse.ui.views.showView,
handler=mailto:org.eclipse.ui.handlers.ShowViewHandler@1b0c08,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.views.showView,
handler=org.eclipse.ui.handlers.ShowViewHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.perspectives.showPerspective':
HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
handler=org.eclipse.ui.handlers.ShowPerspectiveHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
handler=mailto:org.eclipse.ui.handlers.ShowPerspectiveHandler@a9509d,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
!MESSAGE Conflict for 'org.eclipse.ui.navigate.showIn':
HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
handler=mailto:org.eclipse.ui.internal.ShowInHandler@16528a2,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
handler=org.eclipse.ui.internal.ShowInHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE Conflict for 'org.eclipse.ui.window.activateEditor':
HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
handler=org.eclipse.ui.internal.ActivateEditorHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
handler=org.eclipse.ui.internal.ActivateEditorHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE Conflict for 'org.eclipse.ui.window.showSystemMenu':
HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
!MESSAGE Conflict for 'org.eclipse.ui.window.showViewMenu':
HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
handler=org.eclipse.ui.internal.ShowViewMenuHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
handler=org.eclipse.ui.internal.ShowViewMenuHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
!MESSAGE Conflict for 'org.eclipse.ui.file.close':
HandlerActivation(commandId=org.eclipse.ui.file.close,
handler=org.eclipse.ui.internal.CloseEditorHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.close,
handler=org.eclipse.ui.internal.CloseEditorHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE Conflict for 'org.eclipse.ui.file.closeAll':
HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
handler=org.eclipse.ui.internal.CloseAllHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
handler=org.eclipse.ui.internal.CloseAllHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE Conflict for 'org.eclipse.ui.file.closeOthers':
HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
handler=org.eclipse.ui.internal.CloseOthersHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
handler=org.eclipse.ui.internal.CloseOthersHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
2009-10-01 13:29:51.312
!MESSAGE Conflict for 'org.eclipse.ui.ToggleCoolbarAction':
HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.nextEditor':
HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
handler=org.eclipse.ui.internal.CycleEditorHandler:true,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
handler=org.eclipse.ui.internal.CycleEditorHandler:true,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.previousEditor':
HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
handler=org.eclipse.ui.internal.CycleEditorHandler:false,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
handler=org.eclipse.ui.internal.CycleEditorHandler:false,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.nextView':
HandlerActivation(commandId=org.eclipse.ui.window.nextView,
handler=org.eclipse.ui.internal.CycleViewHandler:true,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.nextView,
handler=org.eclipse.ui.internal.CycleViewHandler:true,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.previousView':
HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
handler=org.eclipse.ui.internal.CycleViewHandler:false,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
handler=org.eclipse.ui.internal.CycleViewHandler:false,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.nextPerspective':
HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.previousPerspective':
HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench


!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
!MESSAGE Conflict for 'org.eclipse.ui.window.closeAllPerspectives':
HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.customizePerspective':
HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.closePerspective':
HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.openEditorDropDown':
HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.newEditor':
HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
expression=,sourcePriority=0)

!ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE A handler conflict occurred. This may disable some commands.
!SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
!MESSAGE Conflict for 'org.eclipse.ui.window.maximizePart':
HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
expression=,sourcePriority=0)
HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
expression=,sourcePriority=0)
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A handler conflict occurred. This may disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.390
!MESSAGE Could not create color factory.
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Could not create color factory., Code: 4, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
!MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".
!STACK 0
java.lang.ExceptionInInitializerError
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException
at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
at org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
... 48 more
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory"., Code: 1, Plugin: org.eclipse.equinox.registry
java.lang.ExceptionInInitializerError
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
!MESSAGE Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or defaultMapping may be set.

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
!MESSAGE Could not create color factory.

!ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
!MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".

at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.NullPointerException
at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
at org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
... 48 more
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or defaultMapping may be set., Code: 4, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Could not create color factory., Code: 4, Plugin: org.eclipse.rap.ui
!STACK 0
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory"., Code: 1, Plugin: org.eclipse.equinox.registry
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_BG_END: Only one of value or defaultMapping may be set., Code: 4, Plugin: org.eclipse.rap.ui
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Could not create color factory., Code: 4, Plugin: org.eclipse.rap.ui

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.421
!MESSAGE Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id org.eclipse.ui.workbench.ACTIVE_TAB_BG_END: Only one of value or defaultMapping may be set.

!ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.421
!MESSAGE Could not create color factory.

!ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.421
!MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".
!STACK 0
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses sionSingletonBase.java:154)
at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing letonBase.java:91)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g etInstance(WorkbenchPlugin.java:142)
at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor kbenchPlugin.java:876)
at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe nch.java:1428)
at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run (StartupThreading.java:32)
at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync (UICallBackManager.java:115)
at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler. runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC ontext(UICallBack.java:44)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
at org.eclipse.ui.internal.StartupThreading.runWithoutException s(StartupThreading.java:110)
at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench. java:1424)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real mAdapterHook.java:48)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:430)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:157)
at org.user.mgmt.rap.Application.createUI(Application.java:17)
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:92)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)
Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to instantiate class "org.eclipse.ui.internal.themes.LightColorFactory"., Code: 1, Plugin: org.eclipse.equinox.registry
java.lang.NoClassDefFoundError: Could not initialize class org.eclipse.ui.internal.themes.LightColorFactory
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:170)
at org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:874)
at org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo rFactory(ThemeRegistryReader.java:406)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV alue(ThemeRegistryReader.java:183)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor (ThemeRegistryReader.java:139)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme nt(ThemeRegistryReader.java:239)
at org.eclipse.ui.internal.registry.RegistryReader.readElements (RegistryReader.java:144)
at org.eclipse.ui.internal.registry.RegistryReader.readExtensio n(RegistryReader.java:155)
at org.eclipse.ui.internal.registry.RegistryReader.readRegistry (RegistryReader.java:176)
at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme s(ThemeRegistryReader.java:458)
at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init >(WorkbenchPlugin.java:149)
Re: RAP with Riena Remote Service Support [message #583774 is a reply to message #583757] Thu, 01 October 2009 08:55 Go to previous messageGo to next message
Benjamin Muskalla is currently offline Benjamin MuskallaFriend
Messages: 338
Registered: July 2009
Senior Member
Hi,

it looks like you have both org.eclipse.rap.ui.workbench and
org.eclipse.ui.workbench in your launc configuration. Please be sure to
either have the RCP plugins *or* the RAP plugins in your target / launch
config to prevent these errors. Due to the architecture of Equinox it's
not possible to have them run in the same configuration together.

Regards,
Ben

Hemanth M S wrote:
> Hi Stefan,
>
> Ok I got it. It is because of server is not started. I forgot to select
> server bundle. After selection
> org.eclipse.equinox.http.jetty
> org.mortbay.jetty.server
> org.mortbay.jetty.util
>
>
> Now I got the page with following log.
>
> osgi> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher]
> null {org.osgi.service.log.LogService,
> org.eclipse.equinox.log.ExtendedLogService}={service.id=48} ServiceEvent
> REGISTERED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher]
> org.eclipse.riena.internal.core.StartupsSafeRunnable Startup:
> 'org.eclipse.equinox.log' succesful.
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.core.Activator DeferredLogEvent on Thu Oct 01
> 13:29:42 IST 2009 (1254383982453 ms) in thread [Start Level Event
> Dispatcher]:
> LogLevel(INFO), Message(No stage information set.)
> Thu Oct 01 13:29:42 IST 2009 INFO [DeferredLoggingForwarder]
> org.eclipse.riena.internal.communication.core.ssl.SSLConfigu ration
> DeferredLogEvent on Thu Oct 01 13:29:42 IST 2009 (1254383982500 ms) in
> thread [Start Level Event Dispatcher]:
> LogLevel(INFO), Message(No configuration given!.)
> Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher]
> org.eclipse.riena.communication.core.factory.RemoteServiceFa ctory found
> protocol [hessian]
> mailto: org.eclipse.riena.internal.communication.factory.hessian.Rem oteServiceFactoryHessian @4ac216
>
> Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.user.mgmt.common.services.IUserManagement}={service.url
> =http://localhost/hessian/IUserManagementService,
> service.protocol=hessian, service.id=49} ServiceEvent REGISTERED
> Thu Oct 01 13:29:42 IST 2009 DEBUG [Start Level Event Dispatcher]
> org.eclipse.riena.internal.communication.core.registry.Remot
> eServiceRegistry OSGi NEW service registered id:
> org.user.mgmt.common.services.IUserManagement
> [Lorg.user.mgmt.common.beans.UserBean;@1758500
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.eclipse.core.runtime.content.IContentTypeManager}={serv ice.id=50}
> ServiceEvent REGISTERED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent INFO
> Thu Oct 01 13:29:42 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.osgi.service.http.HttpService}={service.description=Equ inox
> Jetty-based Http Service, service.vendor=Eclipse.org, http.port=2401,
> service.id=51} ServiceEvent REGISTERED
> Thu Oct 01 13:29:43 IST 2009 INFO [Start Level Event Dispatcher] null
> {org.osgi.service.cm.ManagedServiceFactory}={service.pid=org
> .eclipse.equinox.http.jetty.config, service.id=52} ServiceEvent REGISTERED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> BundleEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTED
> Thu Oct 01 13:29:43 IST 2009 INFO [Framework Event Dispatcher] null
> FrameworkEvent STARTLEVEL CHANGED
> !SESSION 2009-10-01 13:29:39.937
> -----------------------------------------------
> eclipse.buildId=unknown
> java.version=1.6.0_16
> java.vendor=Sun Microsystems Inc.
> BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
> Command-line arguments: -dev file:F:/latest
> downloads/eclipse/workspace/.metadata/.plugins/org.eclipse.p
> de.core/org.user.mgmt.rap/dev.properties -os win32 -ws win32 -arch x86
> -console -consolelog
>
> !ENTRY org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
> !MESSAGE The following is a complete list of bundles which are not
> resolved, see the prior log entry for the root cause if it exists:
> !SUBENTRY 1 org.eclipse.osgi 2 0 2009-10-01 13:29:43.656
> !MESSAGE Bundle org.eclipse.core.runtime_3.5.100.v20090629 [168] was not
> resolved.
> !SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
> !MESSAGE Missing optionally required bundle
> org.eclipse.core.runtime.compatibility.auth_[3.2.0,4.0.0).
> !SUBENTRY 2 org.eclipse.core.runtime 2 0 2009-10-01 13:29:43.656
> !MESSAGE Missing imported package
> org.eclipse.core.internal.runtime.auth_0.0.0.
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend
> AbstractSourceProvider
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.services.WorkbenchSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.services.ActionSetSourceProvider' should extend
> AbstractSourceProvider
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend
> AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.093
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.menus.FocusControlSourceProvider' should extend
> AbstractSourceProvider
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.services.MenuSourceProvider' should extend
> AbstractSourceProvider
>
> !ENTRY org.eclipse.rap.ui 4 0 2009-10-01 13:29:51.109
> !MESSAGE Source Provider
> 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should
> extend AbstractSourceProvider
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Source Provider
> 'org.eclipse.ui.internal.contexts.ActiveContextSourceProvide r' should
> extend AbstractSourceProvider, Code: 0, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.140
> !MESSAGE Conflict for 'org.eclipse.ui.newWizard':
> HandlerActivation(commandId=org.eclipse.ui.newWizard,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$New,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.newWizard,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:New@177ab84,
>
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.import':
> HandlerActivation(commandId=org.eclipse.ui.file.import,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$Impor t,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.import,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:Import@44b7f7,
>
> expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING
> [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A
> handler conflict occurred. This may disable some commands., Code: 0,
> Plugin: org.eclipse.ui.workbench
>
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.export':
> HandlerActivation(commandId=org.eclipse.ui.file.export,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$mailt o:Export@ebaf12,
>
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.export,
> handler=org.eclipse.ui.internal.handlers.WizardHandler$Expor t,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.properties':
> HandlerActivation(commandId=org.eclipse.ui.file.properties,
> handler=org.eclipse.ui.internal.handlers.PropertyDialogHandl er,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.properties,
> handler=mailto:org.eclipse.ui.internal.handlers.PropertyDialogHandler@14b03ea,
>
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.156
> !MESSAGE Conflict for 'org.eclipse.ui.file.exit':
> HandlerActivation(commandId=org.eclipse.ui.file.exit,
> handler=mailto:org.eclipse.ui.internal.handlers.QuitHandler@77a748,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.exit,
> handler=org.eclipse.ui.internal.handlers.QuitHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE Conflict for 'org.eclipse.ui.window.switchToEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
> handler=org.eclipse.ui.internal.WorkbenchEditorsHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.switchToEd itor,
> handler=mailto:org.eclipse.ui.internal.WorkbenchEditorsHandler@f84b0a,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 Thu Oct 01 13:29:51 IST 2009 WARNING
> [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A
> handler conflict occurred. This may disable some commands., Code: 0,
> Plugin: org.eclipse.ui.workbench
> 2009-10-01 13:29:51.234
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE Conflict for 'org.eclipse.ui.window.minimizePart':
> HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
> handler=org.eclipse.ui.internal.handlers.MinimizePartHandler ,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.minimizePa rt,
> handler=mailto:org.eclipse.ui.internal.handlers.MinimizePartHandler@15ee9e3,
>
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.234
> !MESSAGE Conflict for 'org.eclipse.ui.file.closePart':
> HandlerActivation(commandId=org.eclipse.ui.file.closePart,
> handler=org.eclipse.ui.internal.handlers.ClosePartHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.closePart,
> handler=mailto:org.eclipse.ui.internal.handlers.ClosePartHandler@1f94a1f,
>
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.window.preferences':
> HandlerActivation(commandId=org.eclipse.ui.window.preference s,
> handler=org.eclipse.ui.internal.handlers.ShowPreferencePageH andler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.preference s,
> handler=mailto:org.eclipse.ui.internal.handlers.ShowPreferencePageHandler@1d318f,
>
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.views.showView':
> HandlerActivation(commandId=org.eclipse.ui.views.showView,
> handler=mailto:org.eclipse.ui.handlers.ShowViewHandler@1b0c08,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.views.showView,
> handler=org.eclipse.ui.handlers.ShowViewHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.perspectives.showPerspective':
> HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
> handler=org.eclipse.ui.handlers.ShowPerspectiveHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.perspectives.show Perspective,
> handler=mailto:org.eclipse.ui.handlers.ShowPerspectiveHandler@a9509d,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.250
> !MESSAGE Conflict for 'org.eclipse.ui.navigate.showIn':
> HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
> handler=mailto:org.eclipse.ui.internal.ShowInHandler@16528a2,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.navigate.showIn,
> handler=org.eclipse.ui.internal.ShowInHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE Conflict for 'org.eclipse.ui.window.activateEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
> handler=org.eclipse.ui.internal.ActivateEditorHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.activateEd itor,
> handler=org.eclipse.ui.internal.ActivateEditorHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE Conflict for 'org.eclipse.ui.window.showSystemMenu':
> HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
> handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.showSystem Menu,
> handler=org.eclipse.ui.internal.ShowPartPaneMenuHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.281
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
> !MESSAGE Conflict for 'org.eclipse.ui.window.showViewMenu':
> HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
> handler=org.eclipse.ui.internal.ShowViewMenuHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.showViewMe nu,
> handler=org.eclipse.ui.internal.ShowViewMenuHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.296
> !MESSAGE Conflict for 'org.eclipse.ui.file.close':
> HandlerActivation(commandId=org.eclipse.ui.file.close,
> handler=org.eclipse.ui.internal.CloseEditorHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.close,
> handler=org.eclipse.ui.internal.CloseEditorHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE Conflict for 'org.eclipse.ui.file.closeAll':
> HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
> handler=org.eclipse.ui.internal.CloseAllHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.closeAll,
> handler=org.eclipse.ui.internal.CloseAllHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE Conflict for 'org.eclipse.ui.file.closeOthers':
> HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
> handler=org.eclipse.ui.internal.CloseOthersHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.file.closeOthers,
> handler=org.eclipse.ui.internal.CloseOthersHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0Thu Oct 01 13:29:51 IST 2009
> WARNING [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime
> Message: A handler conflict occurred. This may disable some commands.,
> Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> 2009-10-01 13:29:51.312
> !MESSAGE Conflict for 'org.eclipse.ui.ToggleCoolbarAction':
> HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
> handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.ToggleCoolbarActi on,
> handler=org.eclipse.ui.internal.handlers.ToggleCoolbarHandle r,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.312
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.nextEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
> handler=org.eclipse.ui.internal.CycleEditorHandler:true,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.nextEditor ,
> handler=org.eclipse.ui.internal.CycleEditorHandler:true,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.previousEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
> handler=org.eclipse.ui.internal.CycleEditorHandler:false,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.previousEd itor,
> handler=org.eclipse.ui.internal.CycleEditorHandler:false,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.nextView':
> HandlerActivation(commandId=org.eclipse.ui.window.nextView,
> handler=org.eclipse.ui.internal.CycleViewHandler:true,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.nextView,
> handler=org.eclipse.ui.internal.CycleViewHandler:true,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.previousView':
> HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
> handler=org.eclipse.ui.internal.CycleViewHandler:false,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.previousVi ew,
> handler=org.eclipse.ui.internal.CycleViewHandler:false,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.nextPerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.nextPerspe ctive,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:true ,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.previousPerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.previousPe rspective,
> handler=org.eclipse.ui.internal.CyclePerspectiveHandler:fals e,
> expression=,sourcePriority=0)Thu Oct 01 13:29:51 IST 2009 WARNING
> [UIThread [12awl37xa5vk6]] Bundle org.eclipse.core.runtime Message: A
> handler conflict occurred. This may disable some commands., Code: 0,
> Plugin: org.eclipse.ui.workbench
>
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.328
> !MESSAGE Conflict for 'org.eclipse.ui.window.closeAllPerspectives':
> HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
> handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.closeAllPe rspectives,
> handler=org.eclipse.ui.internal.handlers.CloseAllPerspective sHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.customizePerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
> handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.customizeP erspective,
> handler=org.eclipse.ui.internal.handlers.EditActionSetsHandl er,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.closePerspective':
> HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
> handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.closePersp ective,
> handler=org.eclipse.ui.internal.handlers.ClosePerspectiveHan dler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.openEditorDropDown':
> HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
> handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.openEditor DropDown,
> handler=org.eclipse.ui.internal.WorkbookEditorsHandler,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.newEditor':
> HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
> handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.newEditor,
> handler=org.eclipse.ui.internal.handlers.NewEditorHandler,
> expression=,sourcePriority=0)
>
> !ENTRY org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE A handler conflict occurred. This may disable some commands.
> !SUBENTRY 1 org.eclipse.ui.workbench 2 0 2009-10-01 13:29:51.343
> !MESSAGE Conflict for 'org.eclipse.ui.window.maximizePart':
> HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
> handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
> expression=,sourcePriority=0)
> HandlerActivation(commandId=org.eclipse.ui.window.maximizePa rt,
> handler=org.eclipse.ui.internal.handlers.MaximizePartHandler ,
> expression=,sourcePriority=0)
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
> Thu Oct 01 13:29:51 IST 2009 WARNING [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: A handler conflict occurred. This may
> disable some commands., Code: 0, Plugin: org.eclipse.ui.workbench
>
> !ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.390
> !MESSAGE Could not create color factory.
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Could not create color factory., Code:
> 4, Plugin: org.eclipse.rap.ui
>
> !ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
> !MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class
> "org.eclipse.ui.internal.themes.LightColorFactory".
> !STACK 0
> java.lang.ExceptionInInitializerError
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
> at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
> at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
> at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real
> mAdapterHook.java:48)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work
> bench.java:430)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j
> ava:157)
> at org.user.mgmt.rap.Application.createUI(Application.java:17)
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:92)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
> Caused by: java.lang.NullPointerException
> at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
> at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
> at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
> at
> org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
>
> ... 48 more
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to
> instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".,
> Code: 1, Plugin: org.eclipse.equinox.registry
> java.lang.ExceptionInInitializerError
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
> at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
> at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
> at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real
> mAdapterHook.java:48)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work
> bench.java:430)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j
> ava:157)
> at org.user.mgmt.rap.Application.createUI(Application.java:17)
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:92)
> !ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
> !MESSAGE Plugin org.eclipse.ui, extension org.eclipse.ui.themes, id
> org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or
> defaultMapping may be set.
>
> !ENTRY org.eclipse.rap.ui 4 4 2009-10-01 13:29:51.406
> !MESSAGE Could not create color factory.
>
> !ENTRY org.eclipse.equinox.registry 4 1 2009-10-01 13:29:51.406
> !MESSAGE Plug-in "org.eclipse.ui" was unable to instantiate class
> "org.eclipse.ui.internal.themes.LightColorFactory".
>
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
> Caused by: java.lang.NullPointerException
> at org.eclipse.ui.themes.ColorUtil.getSystemColor(ColorUtil.jav a:152)
> at org.eclipse.ui.themes.ColorUtil.process(ColorUtil.java:47)
> at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java :172)
> at
> org.eclipse.ui.internal.themes.LightColorFactory.<clinit>(LightColorFactory.java:33)
>
> ... 48 more
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Plugin org.eclipse.ui, extension
> org.eclipse.ui.themes, id
> org.eclipse.ui.workbench.ACTIVE_TAB_TEXT_COLOR: Only one of value or
> defaultMapping may be set., Code: 4, Plugin: org.eclipse.rap.ui
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Could not create color factory., Code:
> 4, Plugin: org.eclipse.rap.ui
> !STACK 0
> java.lang.NoClassDefFoundError: Could not initialize class
> org.eclipse.ui.internal.themes.LightColorFactory
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2320)
> at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:22 09)
> at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:427)
> at org.eclipse.ui.internal.RealmAdapterHook.runWithDefault(Real
> mAdapterHook.java:48)
> at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work
> bench.java:430)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j
> ava:157)
> at org.user.mgmt.rap.Application.createUI(Application.java:17)
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:92)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
> Thu Oct 01 13:29:51 IST 2009 ERROR [UIThread [12awl37xa5vk6]] Bundle
> org.eclipse.core.runtime Message: Plug-in "org.eclipse.ui" was unable to
> instantiate class "org.eclipse.ui.internal.themes.LightColorFactory".,
> Code: 1, Plugin: org.eclipse.equinox.registry
> java.lang.NoClassDefFoundError: Could not initialize class
> org.eclipse.ui.internal.themes.LightColorFactory
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at java.lang.Class.newInstance0(Unknown Source)
> at java.lang.Class.newInstance(Unknown Source)
> at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI
> .createExecutableExtension(RegistryStrategyOSGI.java:170)
> at org.eclipse.core.internal.registry.ExtensionRegistry.createE
> xecutableExtension(ExtensionRegistry.java:874)
> at org.eclipse.core.internal.registry.ConfigurationElement.crea
> teExecutableExtension(ConfigurationElement.java:243)
> at org.eclipse.core.internal.registry.ConfigurationElementHandl
> e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.checkColo
> rFactory(ThemeRegistryReader.java:406)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.getColorV
> alue(ThemeRegistryReader.java:183)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readColor
> (ThemeRegistryReader.java:139)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readEleme
> nt(ThemeRegistryReader.java:239)
> at org.eclipse.ui.internal.registry.RegistryReader.readElements
> (RegistryReader.java:144)
> at org.eclipse.ui.internal.registry.RegistryReader.readExtensio
> n(RegistryReader.java:155)
> at org.eclipse.ui.internal.registry.RegistryReader.readRegistry
> (RegistryReader.java:176)
> at org.eclipse.ui.internal.themes.ThemeRegistryReader.readTheme
> s(ThemeRegistryReader.java:458)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.<init
> >(WorkbenchPlugin.java:149)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e
> Method)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n
> Source)
> at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un
> known Source)
> at java.lang.reflect.Constructor.newInstance(Unknown Source)
> at org.eclipse.rwt.SessionSingletonBase.getInstanceInternal(Ses
> sionSingletonBase.java:154)
> at org.eclipse.rwt.SessionSingletonBase.getInstance(SessionSing
> letonBase.java:91)
> at org.eclipse.ui.internal.WorkbenchPlugin$ThemeRegistryStore.g
> etInstance(WorkbenchPlugin.java:142)
> at org.eclipse.ui.internal.WorkbenchPlugin.getThemeRegistry(Wor
> kbenchPlugin.java:876)
> at org.eclipse.ui.internal.Workbench$29.runWithException(Workbe
> nch.java:1428)
> at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run
> (StartupThreading.java:32)
> at org.eclipse.rwt.internal.lifecycle.UICallBackManager.addSync
> (UICallBackManager.java:115)
> at org.eclipse.swt.widgets.Display$2.run(Display.java:696)
> at org.eclipse.rwt.internal.lifecycle.UICallBackServiceHandler.
> runNonUIThreadWithFakeContext(UICallBackServiceHandler.java: 460)
> at org.eclipse.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeC
> ontext(UICallBack.java:44)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:694)
> at org.eclipse.ui.internal.StartupThreading.runWithoutException
> s(StartupThreading.java:110)
> at org.eclipse.ui.internal.Workbench.initializeFonts(Workbench.
> java:1424)
> at org.eclipse.ui.internal.Workbench.init(Workbench.java:1304)
> at org.eclipse.ui.internal.Wo
Re: RAP with Riena Remote Service Support [message #583794 is a reply to message #583757] Thu, 01 October 2009 09:40 Go to previous messageGo to next message
Stefan Liebig is currently offline Stefan LiebigFriend
Messages: 124
Registered: July 2009
Senior Member
Hi Hemanth,

Hemanth M S wrote:
> Hi Stefan,
>
> Ok I got it. It is because of server is not started. I forgot to select
> server bundle. After selection
> org.eclipse.equinox.http.jetty
> org.mortbay.jetty.server
> org.mortbay.jetty.util
>

Argh, I didn´t see that! It is so easy to forget it ;-)

Tschüß,
Stefan
Re: RAP with Riena Remote Service Support [message #583809 is a reply to message #489037] Thu, 01 October 2009 11:51 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Ben & Stefan,

First of all hearty thanks for your great support :)

Now I have created two work space and Target Platform one for RCP and one for RAP.

And I have invoked Web Service successfully from RAP. But I got another exception while showing page.

2009-10-01 17:09:41.484::WARN: ERROR: /rap
java.lang.IllegalArgumentException: An entry point named 'userMgmt' does not exist.
at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU I(EntryPointManager.java:77)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT LifeCycle.java:231)
at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont roller.run(RWTLifeCycle.java:119)
at java.lang.Thread.run(Unknown Source)



My plugin.xml looks like this

<extension
point="org.eclipse.rap.ui.entrypoint">
<entrypoint
class="org.user.mgmt.rap.Application"
parameter="userMgmt"
id="org.user.mgmt.rap.Application">
</entrypoint>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
name="RAP Perspective"
class="org.user.mgmt.rap.Perspective"
id="org.user.mgmt.rap.perspective">
</perspective>
</extension>

I am not able to find out, why its coming? :(

Regards
Hemanth M S
Re: RAP with Riena Remote Service Support [message #583815 is a reply to message #489057] Thu, 01 October 2009 13:19 Go to previous messageGo to next message
Benjamin Muskalla is currently offline Benjamin MuskallaFriend
Messages: 338
Registered: July 2009
Senior Member
Hi Hemanth,

are you sure you have your application bundle in the launch config?
You said you get the exception *and* the RAP app is running? Because the
exceptions only says that there is no entrypoint - so naturally this
means you can't even access the application.

Regards,
Ben

Hemanth M S wrote:
> Hi Ben & Stefan,
>
> First of all hearty thanks for your great support :)
>
> Now I have created two work space and Target Platform one for RCP and
> one for RAP.
>
> And I have invoked Web Service successfully from RAP. But I got another
> exception while showing page.
>
> 2009-10-01 17:09:41.484::WARN: ERROR: /rap
> java.lang.IllegalArgumentException: An entry point named 'userMgmt' does
> not exist.
> at org.eclipse.rwt.internal.lifecycle.EntryPointManager.createU
> I(EntryPointManager.java:77)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle.createUI(RWT
> LifeCycle.java:231)
> at org.eclipse.rwt.internal.lifecycle.RWTLifeCycle$UIThreadCont
> roller.run(RWTLifeCycle.java:119)
> at java.lang.Thread.run(Unknown Source)
>
>
>
> My plugin.xml looks like this
>
> <extension
> point="org.eclipse.rap.ui.entrypoint">
> <entrypoint
> class="org.user.mgmt.rap.Application"
> parameter="userMgmt"
> id="org.user.mgmt.rap.Application">
> </entrypoint>
> </extension>
> <extension
> point="org.eclipse.ui.perspectives">
> <perspective
> name="RAP Perspective"
> class="org.user.mgmt.rap.Perspective"
> id="org.user.mgmt.rap.perspective">
> </perspective>
> </extension>
>
> I am not able to find out, why its coming? :(
>
> Regards
> Hemanth M S


--
Benjamin Muskalla | EclipseSource Karlsruhe
http://www.eclipsesource.com | http://twitter.com/eclipsesource
Re: RAP with Riena Remote Service Support [message #583834 is a reply to message #489083] Thu, 01 October 2009 14:14 Go to previous messageGo to next message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Ben,

This is the launch config which used to run

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.rap.ui.launch.RAPLauncher">
<booleanAttribute key="append.args" value="true"/>
<booleanAttribute key="automaticAdd" value="true"/>
<booleanAttribute key="automaticValidate" value="false"/>
<stringAttribute key="bootstrap" value=""/>
<stringAttribute key="checked" value="[NONE]"/>
<booleanAttribute key="clearConfig" value="false"/>
<stringAttribute key="configLocation" value=" ${workspace_loc}/.metadata/.plugins/org.eclipse.pde.core/org .user.mgmt.rap "/>
<booleanAttribute key="default_auto_start" value="true"/>
<intAttribute key="default_start_level" value="4"/>
<booleanAttribute key="includeOptional" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl} -console"/>
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Declipse.ignoreApp=true -Dosgi.noShutdown=true"/>
<stringAttribute key="org.eclipse.rap.launch.browserMode" value="INTERNAL"/>
<stringAttribute key="org.eclipse.rap.launch.entryPoint" value="userMgmt"/>
<stringAttribute key="org.eclipse.rap.launch.libraryVariant" value="STANDARD"/>
<stringAttribute key="org.eclipse.rap.launch.logLevel" value="OFF"/>
<booleanAttribute key="org.eclipse.rap.launch.openBrowser" value="true"/>
<intAttribute key="org.eclipse.rap.launch.port" value="10080"/>
<stringAttribute key="org.eclipse.rap.launch.servletName" value="rap"/>
<booleanAttribute key="org.eclipse.rap.launch.terminatePrevious" value="true"/>
<booleanAttribute key="org.eclipse.rap.launch.useManualPort" value="false"/>
<stringAttribute key="pde.version" value="3.3"/>
<booleanAttribute key="show_selected_only" value="false"/>
<stringAttribute key="target_bundles" value="mailto:org.eclipse.swt@default:default,org.eclipse.core.commands*mailto:3.5.0.I20090525-2000@default:default,org.eclipse.osgi*mailto:3.5.0.v20090520@-1:true,org.eclipse.core.databinding.observable*mailto:1.2.0.I20090604-2000@default:default,org.eclipse.equinox.registry*mailto:3.4.100.v20090520-1800@default:default,mailto:org.eclipse.jface.databinding@default:default,org.eclipse.equinox.http.servlet*mailto:1.0.200.v20090520-1800@default:default,org.eclipse.osgi*mailto:3.5.100.v20090803@-1:true,org.eclipse.core.runtime*mailto:3.5.0.v20090525@default:true,mailto:org.eclipse.equinox.transforms.hook@default:false,mailto:org.eclipse.swt.win32.win32.x86@default:false,mailto:org.eclipse.help@default:default,org.eclipse.equinox.preferences*mailto:3.2.300.v20090520-1800@default:default,org.eclipse.core.jobs*mailto:3.4.100.v20090429-1800@default:default,mailto:org.eclipse.rap.ui@default:default,org.eclipse.core.databinding.observable*mailto:1.2.0.I20090630-0800@default:default,mailto:org.eclipse.equinox.log@default:default,org.eclipse.core.jobs*mailto:3.4.100.v20090429-1800@default:default,mailto:org.eclipse.rap.rwt@default:default,mailto:org.apache.log4j@default:default,mailto:com.ibm.icu.base@default:default,mailto:org.eclipse.jface@default:default,org.eclipse.core.expressions*mailto:3.4.100.v20090429-1800@default:default,org.eclipse.equinox.http.registry*mailto:1.0.200.v20090520-1800@default:default,org.eclipse.core.databinding*mailto:1.2.0.I20090630-0800@default:default,org.eclipse.core.commands*mailto:3.5.0.I20090525-2000@default:default,mailto:org.eclipse.rap.jface.databinding@default:default,org.eclipse.core.expressions*mailto:3.4.100.v20090429-1800@default:default,mailto:org.eclipse.rap.jface@default:default,mailto:com.ibm.icu@default:default,org.eclipse.core.contenttype*mailto:3.4.0.v20090429-1800@default:default,mailto:org.user.mgmt.common@default:default,org.eclipse.equinox.http.jetty*mailto:2.0.0.v20090520-1800@default:default,org.eclipse.osgi.services*mailto:3.2.0.v20090520-1800@default:default,org.eclipse.equinox.http.jetty*mailto:2.0.0.v20090520-1800@default:default,mailto:org.eclipse.riena.communication.factory.hessian@default:default,org.eclipse.core.databinding*mailto:1.2.0.I20090604-2000@default:default,org.mortbay.jetty.util*mailto:6.1.15.v200905182336@default:default,mailto:org.user.mgmt.ws@default:default,org.eclipse.equinox.app*mailto:1.2.0.v20090520-1800@default:default,org.eclipse.core.databinding.property*mailto:1.2.0.I20090630-0800@default:default,org.eclipse.equinox.http.registry*mailto:1.0.200.v20090520-1800@default:default,mailto:org.eclipse.rap.ui.workbench@default:default,mailto:com.caucho.hessian@default:default,org.eclipse.equinox.common*mailto:3.5.100.v20090727@2:true,mailto:org.eclipse.rap.rwt.q07@default:false,org.eclipse.core.contenttype*mailto:3.4.0.v20090429-1800@default:default,javax.servlet*mailto:2.5.0.v200806031605@default:default,org.eclipse.equinox.registry*mailto:3.4.100.v20090520-1800@default:default,org.mortbay.jetty.server*mailto:6.1.15.v200905151201@default:default,javax.servlet*mailto:2.5.0.v200806031605@default:default,mailto:org.eclipse.equinox.security@default:default,mailto:org.eclipse.core.runtime.compatibility.auth@default:default,org.eclipse.equinox.common*mailto:3.5.0.v20090520-1800@2:true,org.mortbay.jetty.server*mailto:6.1.15.v200905151201@default:default,mailto:org.eclipse.riena.core@default:default,org.eclipse.core.databinding.property*mailto:1.2.0.I20090526-2000@default:default,mailto:org.eclipse.core.net@default:default,mailto:javax.servlet.jsp@default:default,org.eclipse.equinox.app*mailto:1.2.0.v20090520-1800@default:default,org.eclipse.osgi.services*mailto:3.2.0.v20090520-1800@default:default,mailto:org.eclipse.equinox.security.win32.x86@default:false,org.eclipse.equinox.preferences*mailto:3.2.300.v20090520-1800@default:default,org.eclipse.equinox.http.servlet*mailto:1.0.200.v20090520-1800@default:default,org.mortbay.jetty.util*mailto:6.1.15.v200905182336@default:default,mailto:org.eclipse.core.variables@default:default,mailto:org.eclipse.riena.communication.core@default:default"/>
<booleanAttribute key="tracing" value="false"/>
<booleanAttribute key="useDefaultConfigArea" value="true"/>
<stringAttribute key="workspace_bundles" value="mailto:org.user.mgmt.rap@default:default"/>
</launchConfiguration>

What should I do other than this? :(

Regards
Hemanth M S
Re: RAP with Riena Remote Service Support [message #583845 is a reply to message #489106] Thu, 01 October 2009 16:38 Go to previous message
Hemanth M S is currently offline Hemanth M SFriend
Messages: 14
Registered: September 2009
Junior Member
Hi Ben & Stefan,

Now its working, Selected bundles freshly. Thank you for your kind support....


Regards
Hemanth M S
Previous Topic:Riena Remote with org.eclipse.ui dependency
Next Topic:Can the imagepath check for PNG then GIF or tell me if an image exists?
Goto Forum:
  


Current Time: Fri Mar 29 06:36:47 GMT 2024

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

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

Back to the top