Home
TeamSite
Alternate of using HTTP Session Object?
SE123
Hi,
I have one requirement where I want to share information within one component to another. I can achieve the same by storing the information in HTTP session object but I thing keeping lot of information on session object will make the object heavy. Is there any workaround provided by livesite to achieve this?
Thanks in advance.
Find more posts tagged with
Comments
AlexC
The order of execution of components is not defined (so youare not guaranteed that one will execute before the other even if it does at preview).
You would need to use a page or site controller to setup the data inside PageScope map (on RequestContext object) which is then accessible to the components.