java - What's different when implementing Flex authentication/authorization in a clustered environment? -


Is there any difference in implementing FLEX application protection in a clustered Java environment (such as Oracle Application Server / OC4J or JB Cluster) versus a single application server environment? (And / or does this depend on the specific environment software?)

What are the considerations in situations where you need to get certified with LDAP (AD) and store user access information in the database (E.g., user's name contains permissions / roles information)?

Is there no problem in sessions? Any differences between blaze DS and granite DS?

Yes, Blaze DS is a pain when it comes to clustering full stop. LCDs are not better, but there is more support for at least clustering (with the negative side of being ridiculously costly).

The problem is JSESSIONID, which uses FLEX to identify the customer. The associated Flex session object is not shared by default in the cluster, and IIRC, Blazads have no option to share, while LCDs have limited options ... Sticky session or port transmission.

I can not talk for any open source options, but clustering support is usually the scope of payment solutions ...


Comments