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.

Related tags

197 questions
12
votes
4 answers

Eclipse RCP menus & actions: Configure or code?

This is a general question but my current problem revolves around menu handling. In a normal plugin with contributes menu actions you would configure ActionSets etc in the plugin.xml configuration. This is obviously sensible. I am working on a RCP…
paul
  • 12,710
  • 21
  • 76
  • 136
4
votes
1 answer

Eclipse RAP: How to access deployed application

I created a helloworld eclipse RAP project and run it eclipse itself.It is working fine. After that I exported the RAP project to war file by using the eclipse war product configuration. It created the war file.I deployed the war file in tomcat.…
user414967
  • 4,997
  • 6
  • 33
  • 58
4
votes
1 answer

Eclipse RAP crawling by Google?

I'm developing a RAP website and want to make it accessible for robots like Google (I'm only referring to Google here; but I think other search engines work similar). The Webapp contains dynamic content which I load from a Database, depending on…
3
votes
1 answer

Browser detection in a Eclipse RAP application

I was wondering if it is possible to detect the browser (especially IE) in a Eclipse RAP application. I'd like to inform the server about what browser the client is using, so that it can show adapted views. Thanks in advance!
3
votes
1 answer

Get jetty realm credentials in application

It might be a stupid question but we are using jetty basic authentication on our server. Now we want to use the usercredentials in our application. Is it possible to get the current login in the RAP webapplication? Thanks
baklap
  • 2,055
  • 5
  • 27
  • 39
3
votes
1 answer

RCP/RAP: Link in SWT/JFace-TableViewer-Cell

Does anyone know a possibility to place a link in a JFace-TableViewer-Cell? I just need something that fires an event, when it is clicked on. Something that looks like a hyperlink would be perfect. The (big) problem is, that it should work not only…
bingo74
  • 31
  • 2
3
votes
1 answer

ToolTip on disabled ToolItem - RAP vs RCP

Is there a way to have a ToolItem in a ToolBar be disabled and still have it's tooltip? I know it is not possible by default and workarounds can be used (wrapping within another widget), but because ToolItem requires a ToolBar parent I couldn't see…
Teabee
  • 33
  • 3
3
votes
1 answer

What is the correct way to connect to a database from an eclipse plugin?

I am evaluating the Rich Ajax Platform (RAP) and I need to connect to a DB2 database (and perhaps others). Having done a fair amount of J2EE work I usually fetch a DataStore object via JNDI and use that to connect to a database. The actual…
paul
  • 12,710
  • 21
  • 76
  • 136
3
votes
0 answers

What configuration and bundles are required to run an Eclipse RAP application on GlassFish 3.0?

I have an Eclipse plugin which I've written using the RAP 1.4m2 target. It runs fine using the Eclipse launcher and Equinox 3.7 (which is the default in Eclipse 3.6) . I have also configured my GlassFish 3 server to use Equinox 3.7 for OSGI. I…
Zoe
  • 1,783
  • 1
  • 15
  • 17
3
votes
3 answers

JMeter, Gatling with rap 3.0

If I use RAP 3.0 together with JMeter and/or Gatling SelectionListeners of Buttons are never called. With RAP prior version 3.0 it is working. button.addSelectionListener(new SelectionAdapter() { @Override public void…
Michael
  • 65
  • 7
3
votes
1 answer

How can I access one Eclipse RAP entry point from another?

I have an Eclipse RAP 2.3 application with two entry points, say /first and /second. In the GUI of the first entry point, there is a button with which I would like to open the second entry point in a new browser tab. The event handler of that button…
bgerth
  • 1,196
  • 1
  • 11
  • 19
3
votes
2 answers

Integrate Eclipse RAP and OSGI/Spring-DM plugins, using Maven for build

The background I have a project containing my domain model and persistence code (created using Spring-ROO). I've changed this into an OSGi bundle, and build & deploy it using Maven (via PAX Construct scripts). This bundle deploys nicely to Equinox,…
Herman Lintvelt
  • 1,741
  • 1
  • 12
  • 14
2
votes
2 answers

Hibernate and multiple threads, synchronize changes between multiple users

I am using Hibernate in an Eclipse RAP application. I have database tables mapped to classes with Hibernate and these classes have properties that are fetched lazily (If these weren't fetched lazily then I would probably end up loading the whole…
SolidSun
  • 2,059
  • 1
  • 22
  • 27
2
votes
0 answers

how to develop, build and deploy multiple OSGi based web applications

I'm search for a way to develop, build and deploy multiple OSGi based web applications (some RAP). To start I use the RAP examples cloned from: https://github.com/eclipse/rap.git In releng/org.eclipse.rap.examples.build there are three applications…
flavio.donze
  • 6,077
  • 9
  • 41
  • 69
2
votes
1 answer

How to capture Ctrl key is pressed in eclipse RAP

I want to know when the Ctrl key is released in eclipse RAP, I achieved it in RCP. But learnt it behaves differently on RAP. Any suggestions on how to achieve that.
Juseeth
  • 437
  • 1
  • 6
  • 18
1
2 3
13 14