I've implemented my Application like shown in this Example
http://spring.io/blog/2015/01/20/the-resource-server-angular-js-and-spring-security-part-iii
There is a UiApplication
(Port 8080) and two ResourceApplication
s (Port 8090 and 9000)
The authentication works like shown in the Example with Spring Session and Redis.
My szenario is:
User is logged into
UiApplication
User send request to
ResourceApplication
AResourceApplication
A recieves request and want to consumeResourceApplication
B
My Problem: ResourceApplication
A gets 401 Unauthorized from ResourceApplication
B
Is it possible to use the session of the user who sent the request to ResourceApplication
A?