I'm developing an application based on Eclipse RCP. Currently, I need to move this app to RAP. The code is almost no change, because between them support very well single-sourcing. I created 2 different workspaces (one for RAP and the another for RCP). I was able to run RAP apps normally in the embedded server Jetty integrated OSGi bundles inside Eclipse without any problem and with the same possibility as in RCP. However, when I exported my RAP app to .war file, already enabled all required plugins, copy it to the webapps folder of Tomcat. Start my web app from external browser, I always get this error message:
Unable to create perspective 'MyPerspectiveID'. There is no corresponding perspective extension.
Reason:
Unable to create perspective 'MyPerspectiveID'. There is no corresponding perspective extension.
It's really strange, cause it ran normally inside Eclipse.In my application there is only one perspective, on that I put only one view with some stack layout. I really don't know how to resolve this. Please tell me where I possibly made mistake. Thanks so much for any answer.