My application has the following architecture:
1.) a load balanced Flex frontend with sticky sessions which queries
2.) a load balanced REST service also with sticky sessions
The flex frontend queries the service using a Flex HTTPService object. However, although sticky sessions are enabled on both the flex frontend and
rest service, we are seeing queries go to different instances. For example
user will request Flex App1 which will then call RestService1
then user will request Flex App1 again which will call RestService2(instead of RestService1).
Has anyone seen this issue before in a load balanced environment? I need this to work because the REST service does not have a distributed cache, so subsequent requests must hit the same box to use the cache.
thanks