Questions tagged [eclipse-rap]

The Eclipse Remote Application Platform lets you build rich, Ajax-enabled Web applications by using the Eclipse development model/ Use this tag for questions which are specific to RAP rather than general SWT questions.

The Remote Application Platform lets you build rich, Ajax-enabled Web applications by using the Eclipse development model, plug-ins with the well known Eclipse workbench extension points and a widget toolkit with SWT API. RAP provides an implementation of the SWT API called the RAP Widget Toolkit, which makes using the same code basis for Eclipse RCP and Eclipse RAP development possible.

See http://eclipse.org/rap/ for more information and on github https://github.com/eclipse-rap

Related tags

194 questions
0
votes
1 answer

IllegalStateException for running a Job inside a dispose listener

I have a dispose listener which has a Job created inside widgetDisposed(DisposeEvent event) method. So executing this method when the TreeViewer gets disposed is causing, An internal error occurred during: "Cleanup Job". No context available outside…
Juseeth
  • 467
  • 1
  • 6
  • 18
0
votes
2 answers

Handling HTTP session timeout and redirect in Eclipse RAP application

I am working on an Eclipse RAP application (RCP as web application). After the servlet container has invalidated the HttpSession (session timeout, setMaxInactiveInterval exceeded) the following exception is thrown when clicking on the application in…
StaticNoiseLog
  • 1,370
  • 17
  • 27
0
votes
1 answer

Building RAP with Tycho/Maven gives DuplicateReactorIUsException

I'm on the hard way of getting Maven to compile my OSGi-based RAP application by the use of Tycho. I think i'm nearly done glueing everything together, but then there's this one error i'm unable to fix, because i don't know, where it comes from.…
andred
  • 1,204
  • 1
  • 17
  • 29
0
votes
1 answer

RAP application with entrypoint path defined to "/" is not working on Tomcat7

My RAP application has entrypoint defined following
To Kra
  • 3,344
  • 3
  • 38
  • 45
0
votes
1 answer

How to hide unused placeholders/folders Eclipse RCP/RAP

I am struggling to have only two views stacked, to have them only in one window, no other placeholder/folder shown. My perspective looks like: public class PerspectiveNew implements IPerspectiveFactory { public void createInitialLayout(IPageLayout…
To Kra
  • 3,344
  • 3
  • 38
  • 45
0
votes
1 answer

How to export Eclipse RAP application into WAR with gradle script

Eclipse has for exporting RAP application to WAR wizard so called Eclipse WAR Product export wizard which is available as WAR Products (Incubation) bundle org.eclipse.libra.warproducts.feature.feature.group. Does anybody know about ant or gradle…
To Kra
  • 3,344
  • 3
  • 38
  • 45
0
votes
1 answer

Using SWT DateSpinner with RAP does not dispose calendar widget on focus lost

I am working on a project where I need to use the SWT DateSpinner on a RAP application webpage. I brought the entire Datespinner API into my project and have made changes to accommodate it in the application. I am trying to dispose the calendar…
AdM
  • 55
  • 7
0
votes
0 answers

SWT setCapture method equivalent in RAP RWT

Currently working on a RAP project. While working on RWT, I had an already existing code written with the help of the jar org.eclipse.swt and in that a class uses the method org.eclipse.swt.widgets.Control#setCapture() But while converting this…
Gowrav
  • 289
  • 1
  • 4
  • 20
0
votes
3 answers

How to set CSS style for certain table cells? (Eclipse RAP Platform)

If I create CSS class Table-Cell, it is used for all table cells. Table-Cell { padding: 5px; } How can I set the padding to 5px for cells in first table column and 10px for cells in the second table column? How can I do that without…
Paul
  • 580
  • 1
  • 7
  • 22
0
votes
1 answer

how to record last visit page on Eclipse RAP develop

In the development of RAP eclipse, I want to record the last visit of the page, and the next time to open the application is the last visit to the page. which API I need to use the RAP eclipse to develop ?
wykCN
  • 17
  • 5
0
votes
1 answer

Toolbar disappears when hiding the perspective bar

In my application I don't want to show the perspective bar so in preWindowOpen() method I set configurer.setShowPerspectiveBar(false); but the whole toolbar disappears too. I also set configurer.setShowCoolBar(true); And this is my…
gamo
  • 1,549
  • 7
  • 24
  • 36
0
votes
1 answer

TableViewer not refreshing in RAP

I tried to run my Eclipse RCP code to run in Eclipse RAP environment. In my Eclipse RCP code, there is functionality to add the rows in to table. But adding the code does not work in Eclipse RAP. I am using TableViewer. Following is my code. public…
user414967
  • 5,225
  • 10
  • 40
  • 61
0
votes
1 answer

Could we use JavaFX with Eclipse RAP?

I just wanted to know if we could use Java FX with RAP. Also, Could you suggest me few good links or tutorials to study RAP and RCP?
0
votes
1 answer

No scrollbars in ScrolledComposite in RCP/RAP

I have a piece of code with a ScrolledComposite where the vertical scrollbar does not appear even if the content of the widgets is much more then the space in the widget. I was able to reproduce this behaviour in a simple example. I need this to…
Jakub
  • 3,129
  • 8
  • 44
  • 63
0
votes
1 answer

Leak memory issue with Pax logging

I'm using Pax logging in my RAP and OSGi project. I used MAT to check and see the number of org.eclipse.swt.widgets.Display object and org.eclipse.rap.rwt.internal.service.UISessionImpl object are as much as the time I refresh web application and…
gamo
  • 1,549
  • 7
  • 24
  • 36