I have 2 RESTful services realized in JAX-RS (Jersey): "A" and "B". They are deployed on a separate application servers. "A" and "B" are both of mine.
- Client connect and login at "A" service;
- Client ask "A" for resource, for example: https://blabla1/services/myresources;
- For retrieve resource "myresources" service "A" should ask (not redirect) service "B" for another resource, for example: https://blabla2/services/anotherresources.
Service "B" need authenticate too, that's the problem. Is it possible, that service "A" ask "B" with client authentication parameters, and how it will works ?
I guess it's possible with oauth library, but I can't find any examples (close to my problem) and howto's.
Thanks