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

Exporting Eclipse RAP war with OSGi bundles with external bundle-path

I have an Eclipse RAP product, I like to export as a web app for use inside Tomcat. For this I use the warproduct exporter in Eclipse, which until now have worked fine. I have a problem with compilation of one of the OSGi bundles in the product as…
Tonny Madsen
  • 12,628
  • 4
  • 31
  • 70
0
votes
1 answer

Untyped events were supported in RAP?

I'm developing an application based on RCP. Recently, I have moved it to RAP. Before, I used some untyped events in RCP to pass some necessary data for different purposes. For example, I have a button called "Get Data" to get data from server. I…
zungnv
  • 257
  • 3
  • 11
0
votes
0 answers

How to play sound through an eclipse rap/rwt application so it plays through the web browser

Does anyone know how to play sound/audio through eclipse RWT application? RWT application is viewed through a browser and I want play the sound on the browser. I can play sound using Javascript, but this is outside RWT application. I could not find…
0
votes
1 answer

How to invoke a windows file explorer from a SWT button?

Eclipse RAP consists of SWT FileDialog and it's internal implementation has been changed inside RAP. I don't want to use the FileDialog which is available in RAP. Instead I have a custom dialog called FileSelectionDialog which consists of a button,…
0
votes
0 answers

Internal error occured while launching Eclipse RAP

I am currently using Eclipse 2020-03 and installed eclipse RAP 3.16 using the Install New Software feature. Now when I try to launch the RAP application, the below error is seen. An internal error occurred during: "Launching…
0
votes
1 answer

logout handling in eclipse RAP application

In my RAP application I need to do some logout handling (forward do keycloak sso/logout). Where would be a good hook to do that? org.eclipse.ui.application.WorkbenchAdvisor.postShutdown() is executed also if I refresh my browser window (F5), I don't…
flavio.donze
  • 7,432
  • 9
  • 58
  • 91
0
votes
0 answers

Method to maximizing MPlaceolder fail, parent of MArea is null

In my project I use MArea with PartStack as Shared Elements. Perspective contains Part Sash Containers with Placeholders having references to MArea from Shared Elements. The problem is Maximizing, press Maximize button do change icon and tooltip…
Fijal
  • 43
  • 4
0
votes
0 answers

Horizontal scroll bar of a ScrolledComposite not visible

I read all old questions related to this issue but I didn't solve it. Could someone helps me with this because I'm already run out of ideas. Here is my code: ScrolledComposite panelHolder = new ScrolledComposite(composite, SWT.H_SCROLL |…
0
votes
1 answer

Can I run a third-party Eclipse plugin as a standalone RAP application?

I am using a freeware third-party Eclipse plugin (Toad Extensions for Eclipse, which I really love), and I'm interested if I can run that plugin in a Rich Ajax Platform (RAP) container with little effort. If that was possible, I could run a simple…
Lukas Eder
  • 211,314
  • 129
  • 689
  • 1,509
0
votes
0 answers

Sharing state between multiple functions on the prototype

I am creating a client side remote object in Eclipse RAP using Javascript for a text widget. I am then adding functions to the object's prototype in order to be handle various events and to do other business logic. Now some of these functions need…
linuxNoob
  • 600
  • 2
  • 14
  • 30
0
votes
1 answer

Copy data from Eclipse RAP GridTableViewer

I am using GridTableViewer from Eclipse RAP 3.11. The user can select rows. However, when the user clicks on the browser's Edit > Copy menu, nothing is copied to the user's clipboard. The user's clipboard's original contents remain intact. How…
Nathan
  • 8,093
  • 8
  • 50
  • 76
0
votes
0 answers

Add a HTML comment using Eclipse RAP

How do I add a HTML comment using Eclipse RAP 3.9 E4? The following adds the comment text to the HTML albeit in a
. I would like the comment text in a . public class MainEntry extends AbstractEntryPoint { protected void…
Nathan
  • 8,093
  • 8
  • 50
  • 76
0
votes
1 answer

Can I run a RAP-Application on Glassfish?

I should implement a part of a Client-Application as a Web-Application for Glassfish 4.0. Now I saw that there is RAP in Eclipse and it looks perfect for my case. I already created a RAP Demo Project and in Eclipse it works perfect. But if I convert…
markus
  • 11
  • 3
0
votes
1 answer

eclipse rap download service servlet error

Recently, I have made an Eclipse RAP program using javax.servlet package to create a File Download service. It works pretty well when using the built-in server inside the Eclipse IDE. However, after deploying the program on the Tomcat server, while…
chming1016
  • 21
  • 5
0
votes
1 answer

Adding and Loading Javascript to a Browser via Javascript without reloading

I have a SWT Browser in an Eclipse RAP Application, where i load something on my local server and display that html. the url looks something like this: "http://localhost:port/......./myhtml.html" I want to add script sources into my html without…
Levent Dag
  • 162
  • 8