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
2
votes
1 answer

SWT ProgressBar Indeterminate state is showing very slow moving progress bar

I tried using Indeterminate state ProgressBar in SWT, using Chrome browser on Ubuntu 11. Problem here is that ProgressBar is moving too slowly and doesn't looks good. Is there any way to make the ProgressBar movement faster when it's in…
SmartSolution
  • 2,320
  • 5
  • 37
  • 49
1
vote
1 answer

Has Eclipse RAP a standard API

this question might sound a little bit weired... But I will try to explain: I got an Android App, that makes calls against a RAP-Build Website (to that I only have access via Webbrowser). Until now I am sending pure HTTP Requests for example: …
Mark
  • 7,507
  • 12
  • 52
  • 88
1
vote
1 answer

How is client-side rendering done in Eclipse RAP?

I read about Eclipse RAP and understood what a "servlet container" is: some kind of a java applet on a server instead of a client. I don't understand how RAP applications are rendered on browsers... are they pure Javascript, HTML5, Java applets, or…
Marco A.
  • 43,032
  • 26
  • 132
  • 246
1
vote
1 answer

Problems using two OSGI applications in Tomcat

whenever I start and access BIRT and an Eclipse RAP application deployed in Tomcat, Tomcat "crashes" (does not accept any new requests). This does not always happen immediately after the first access, but eventually it happens. If I only run one of…
stracktracer
  • 1,862
  • 5
  • 24
  • 37
1
vote
0 answers

SWT Combo prevent shift + 9 event

I'm developing an Eclipse RAP application where I have to use a combo box. The user can type a RQL filter in the combo or to select already existing one. The problem comes when the user types a left bracket "(" - SHIFT + 9 combination. This…
1
vote
0 answers

Deploying a RAP .war file in jetty

I created an hello-world RAP application following the eclipse tutorial. I have no problems starting it in eclipse. Now i want to package it as a .war file with maven and deploy it inside a jetty server. That's the point where i'm already unsure if…
Kundalini
  • 11
  • 5
1
vote
1 answer

How to position the cursor pointer in RAP

I am trying to create a RAP application that needs to move the cursor pointer to a certain position during a game. Is there a way, using SWT, to move the cursor position? Obviously the java.awt.Robot().mouseMove is not valid in this case because it…
daniel sp
  • 937
  • 1
  • 11
  • 29
1
vote
1 answer

Open file dialog for the server in Eclipse RAP

I have been trying out the FileDialog and FileUpload in Eclipse RAP. They are awesome to get files from the client. However, in my RAP application I need to export and import files to/from the server's local disk. Is there any file dialog widget in…
xavipen
  • 229
  • 1
  • 11
1
vote
1 answer

Some strings on Chinese locale are truncated in SWT Label in Eclipse RAP on the first dialog opening

After reloading this effect disappears and labels are in their suitable sizes. This repeats only if the application is reloaded. On English locale, this dialog shows normally. Example of code containing problem label: private void…
andreytemn
  • 55
  • 4
1
vote
1 answer

Regarding Eclipse Command Frame Work

We are developing a RAP(Rich Ajax Platform) application using Helios 3.6 Version of Eclipse.Here, we are using Command Framework which uses Eclipse Modeling Frame Work. When a command gets executed ,getMostAffectedObject() returns us the most…
VINEEL
  • 125
  • 9
1
vote
1 answer

Build single update-site for RAP and RCP flavored feature

I have a build for a single-sourced RCP/RAP Eclipse feature project that uses maven profiles to either build RAP or RCP bundles, fragments and features. This works reasonably well. If I include my update site project as module in the above build's…
cheppsn
  • 190
  • 13
1
vote
1 answer

Eclipse EMF RAP Target Components

Good day all, I am attempting to get an Eclipse RAP application running with EMF support. Following the steps from the Eclipse wiki (https://wiki.eclipse.org/RAP/EMF_Integration) as closely as possible (it's dated four years ago), I am putting the…
Jim
  • 11
  • 2
1
vote
0 answers

In Eclipse Rap 4.0, how to add meta http-equiv in head

I'm trying to allow mixed content from an iframe in an Eclipse Rap application. It should work using a http-equiv meta in an like this:
1
vote
1 answer

In Eclipse RAP how to push/force current UI state to the client?

I'm using Eclipse RAP and have the following use case: enter search text in a Text field and start search change a Label text to "searching...." do actual search (async) and display result in a Table The problem, even though the label should…
flavio.donze
  • 7,432
  • 9
  • 58
  • 91
1
vote
0 answers

How do I style Section and ScrolledForm headers in Eclipse RAP?

In Eclipse RAP most components can be styled through CSS e.g.: Combo:hover { background-color: #DDDDDD; } Combo-Button:hover { background-color: #DDDDDD; } How can I style Section and ScrolledForm components? They seem to be linked to the…
flavio.donze
  • 7,432
  • 9
  • 58
  • 91
1 2
3
12 13