Hi, All:
We have 5 applications running on the same web server.
How to share data among these five applications?
(I do want to use XML). I have tried to use context.setAttribute("MYDATA", *****); then use context.getAttribute("MYDATA") ; but it does not work.
Please help me as soon as possible!
By the way, in the future, we will use clustered application servers. I guess that I will meet the same problem.
Thx by advance!
Colin he
-
How to share data among different applications (2 messages)
- Posted by: Colin He
- Posted on: May 06 2002 20:28 EDT
Threaded Messages (2)
- How to share data among different applications by Swapnil Shah on May 07 2002 07:47 EDT
- How to share data among different applications by Colin He on May 08 2002 18:15 EDT
-
How to share data among different applications[ Go to top ]
- Posted by: Swapnil Shah
- Posted on: May 07 2002 07:47 EDT
- in response to Colin He
Hi
If u are going to implement clustering in future
then Weblogic has a feature of Common Cache where
u can store shared objects or whatever.
For details referto Weblogic Server Documents and
Jolt.
Regards
Swapnil -
How to share data among different applications[ Go to top ]
- Posted by: Colin He
- Posted on: May 08 2002 18:15 EDT
- in response to Swapnil Shah
In our case, we are using weblogic with tomcat. One of object are stored in the weblogic server context. From tomcat, how can I get this object which is stored in weblogic server?