I have 3 RESTful services serviceA,serviceB,serviceB. if serviceA has to call serviceB and serviceC, do i have to create clients for them and call them?how do i do that ?I am confused about how that would work..please help(in JAVA)
Asked
Active
Viewed 156 times
1 Answers
0
Each service has to perform a http-get (or put/post/delete) on resource that is on a different REST-service. Thats all. Of course you will have to implement a method that does the execution and handling of the results, and this very method will have to implement a HttpClient.

sschrass
- 7,014
- 6
- 43
- 62
-
can you please give an example of how to do that? – user2720088 Aug 29 '13 at 09:11
-
something like my answer from here: http://stackoverflow.com/questions/14404598/android-http-get-request/14404699#14404699 – sschrass Aug 29 '13 at 09:15