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
1
vote
1 answer

RAP Application Singleton

So, I've been reading about RAP applications and I can't stop wondering how should I create static variables only for the current session (in case that are more than one person accessing the application at the same time). I have read about…
1
vote
0 answers

SWT system color displays RGB incorrectly

I am running RAP(RemoteApplicationPlatform) on a Windows machine. There is a default theme applied to most RAP widgets. TableItem.setForeground(Display.getDefault().getSystemColor(SWT.COLOR_DARK_MAGENTA)) This code results in lime green font color…
Elysiumplain
  • 711
  • 8
  • 21
1
vote
2 answers

How to implement repsonsive design in Eclipse RAP?

The Eclipse RAP (Remote Application Platform) project provides a way to write web applications using SWT. Due to single sourcing, the written code can also be used in desktop SWT/RCP applications. Since it is a framework for web applications I was…
flavio.donze
  • 7,432
  • 9
  • 58
  • 91
1
vote
3 answers

ScrolledComposite vertical scrollbar not appearing

I am trying to create a container which will contain a buttons in it after certain amount of buttons I want to get a scroll bar but at the moment scroll bar is not appearing any suggestions? EDIT MoBuConLTLUI Class public class MoBuConLTLUI extends…
mr. Holiday
  • 1,780
  • 2
  • 19
  • 37
1
vote
0 answers

cyclic dependency using the p2-maven-plugin

I 've been using the p2-maven-plugin and I have some problems: it seems to be generating cycling dependencies but I could not find why (the same jars in maven show no problem). I am wondering whether anyone can help. here is my pom.xml
1
vote
1 answer

How to build and deploy war file of e4 RAP application with tycho

I have an e4 RCP product which I want to deliver a e4 RAP application for. Thus, I added a new OSGi bundle which contributes the following implementation of the org.eclipse.rap.rwt.application.ApplicationConfiguration interface, which is declared in…
ErnstZ
  • 55
  • 7
1
vote
0 answers

Equinox P2 IStatus returns code 10001 in Eclipse RAP application "Your original request has been modified. null children=[]"

I have to work with an already existing Eclipse RAP application which contains of two features and around 40 dependencies. Since the Eclipse RAP doesn't have a preStartup() method I call the update procedure in the RAP's start() method: public…
jAC
  • 5,195
  • 6
  • 40
  • 55
1
vote
1 answer

How to style badges in RAP/RWT

I ran into many problems attempting to get multiple badges in my RAP application. Badges are applied like such in RAP: someButton.setData(RWT.BADGE, "badge colored red"); I would like to set the location of the badge too but note below that there…
Elysiumplain
  • 711
  • 8
  • 21
1
vote
1 answer

Using the workspace in a Eclipse RAP application

I have an Eclipse RCP application which I am planning to write in RAP so that I can allow my users to access it on web. I have just started with RAP and have gone through what RAP can provide and what it can't. Also I have seen the demo workbench…
Amrit
  • 433
  • 3
  • 19
1
vote
0 answers

How can I change feedback effect while dragging an item in the Tree?

When I drag an item that contains html-text then users see html string. I use RAP 2.3 I use code based on the public Eclipse RAP examples. And I can not find the way to change feedback effect when user start a drag action. Tree tree = new Tree(…
Paul
  • 580
  • 1
  • 7
  • 22
1
vote
1 answer

Eclipse RAP Multi-client but single server thread

I understand how RAP creates scopes have a specific thread for each client and so on. I also understand how the application scope is unique among several clients, however I don't know how to access that specific scope in a single thread manner. I…
Jarod
  • 35
  • 4
1
vote
1 answer

Authentication via login dialog in Scout (RAP)

I'd like to have an authentication based on scouts default security concept found in https://wiki.eclipse.org/Scout/Concepts/Security. What I've done: I added the BasicSecurityFilter to the servers plugin.xml:
1
vote
1 answer

How can I add constructor params using Dependency Injection

I am trying to do the following. If possible I want to avoid creating them using the 'new' keyword, and rely on Dependency Injection. Is this possible given the following scenario? public class One { @Inject private Two two; …
ekjcfn3902039
  • 1,673
  • 3
  • 29
  • 54
1
vote
2 answers

What do I need to do to resolve bundle org.eclipse.rap.ui cannot be resolved in eclipse helios?

I don't know what I have done wrong but it seems pretty major yet I can't figure it out. I'm using Eclipse Helios to create a RCP / RAP application. I downloaded and installed the RCP / RAP IDE and I could previously launch RAP applications…
steinybot
  • 5,491
  • 6
  • 37
  • 55
1
vote
1 answer

Eclipse RAP or RWT Launch Configuration accessing WEB-INF resources?

I am developing an Eclipse RAP web application and would like to keep resource files (configuration etc.) in WEB-INF and load them with something like this: Properties properties = new…
StaticNoiseLog
  • 1,370
  • 17
  • 27