2

I want some recommendation on best way to communicate RCP thick client and a set of business functionality implemented in Spring on the server side. Please provide urls on the net wherever possible. I would prefer to pass domain objects directly between the two. Is osgi a good option for me?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Sameer Patil
  • 526
  • 4
  • 13

1 Answers1

0

For RESTful web services you could use the Jersey client library. If your exchange format is XML it is really easy to exchange your objects (see here for a tutorial).

Generally, you can use any client library depending on you exchange protocol also in an Eclipse RCP app (see here how to convert a jar into an OSGI bundle).

Community
  • 1
  • 1
Michael
  • 4,722
  • 6
  • 37
  • 58