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?
Asked
Active
Viewed 466 times
2
-
Why do you think OSGi is relevant? – skaffman May 10 '11 at 20:32
-
me not sure. i am just trying to evaluate the options. – Sameer Patil May 10 '11 at 21:05
-
1By using RCP he is running OSGi on the client side so it is natural for one to wonder if it should be used on the server side also. – rancidfishbreath Dec 30 '11 at 21:33
1 Answers
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).